slice method

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

Implementation

Blob slice([int? start, int? end, String? contentType]) {
  return Blob._(_delegate.slice(start, end, contentType));
}