Blob constructor

Blob([
  1. Iterable? blobParts,
  2. BlobPropertyBag? options
])

Implementation

Blob([Iterable<dynamic>? blobParts, BlobPropertyBag? options])
    : _delegate = interop.Blob(
        blobParts,
        options?.delegate ?? interop.BlobPropertyBag(),
      );