BlobResponse constructor

BlobResponse({
  1. required Uint8List data,
  2. String? mimeType,
  3. int? contentLength,
  4. String? contentRange,
})

Implementation

BlobResponse({
  required this.data,
  this.mimeType,
  this.contentLength,
  this.contentRange,
});