blob method

Future<Blob> blob()
inherited

Implementation

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