slice method

  1. @override
Blob slice([
  1. int? start,
  2. int? end,
  3. String? contentType
])
override

Returns a new Blob object containing the data in the specified range of bytes of the blob on which it's called.

MDN Reference

Implementation

@override
Blob slice([int? start, int? end, String? contentType]) =>
    _blob.slice(start, end, contentType);