fromStream method Null safety
Creates a Blob
from a stream
of chunks of data.
Implementation
static Future<Blob> fromStream(
String contentType,
Stream<Uint8List> stream,
Database database,
) =>
BlobImpl.fromStream(contentType, stream, database);