Blob.fromData constructor

Blob.fromData(
  1. String contentType,
  2. Uint8List data
)

Creates a Blob with the given in-memory data.

Implementation

factory Blob.fromData(String contentType, Uint8List data) =>
    BlobImpl.fromData(contentType, data);