blobStorage method
Implementation
BlobStorage blobStorage(
String name, {
int chunksSize = 1024 * 512,
bool? encrypt,
String? secretKey,
}) {
return _blobStorages.putIfAbsent(
name,
() => BlobStorage(
name: name,
path: "$path/blobs/$name",
chunksSize: chunksSize,
encrypted: _encrypted,
),
);
}