StorageDriverContext constructor

StorageDriverContext({
  1. required Container container,
  2. required StorageManager manager,
  3. required String diskName,
  4. required Map<String, dynamic> configuration,
  5. String? storageRoot,
})

Creates a new StorageDriverContext.

container is the dependency injection container. manager is the storage manager instance. diskName is the name of the storage disk. configuration is the configuration map for the driver. storageRoot is an optional root path for storage.

Implementation

StorageDriverContext({
  required this.container,
  required this.manager,
  required this.diskName,
  required this.configuration,
  this.storageRoot,
});