StorageDriverContext constructor
StorageDriverContext({})
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,
});