BlobStorage constructor
BlobStorage({})
Implementation
BlobStorage({
required String name,
required String path,
required int chunksSize,
required bool encrypted,
}) : _name = name,
_collection = Collection(name: name, path: "$path/_metadata", encrypted: false),
_chunksSize = chunksSize,
_blobDiskDriver = BlobDiskDriver(path, encrypted)..createSync();