blob method
Implementation
Future<Blob> blob() async {
return Blob.bytes(
await bytes(),
type: bodyMimeTypeHint ?? bodyData.defaultContentType ?? '',
);
}
Future<Blob> blob() async {
return Blob.bytes(
await bytes(),
type: bodyMimeTypeHint ?? bodyData.defaultContentType ?? '',
);
}