StorageExplorer constructor

StorageExplorer(
  1. StorageDatabase storageDatabase,
  2. ExplorerSource explorerSource,
  3. StorageListeners storageListeners,
  4. ExplorerDirectory localDirectory,
)

Implementation

StorageExplorer(
  this.storageDatabase,
  this.explorerSource,
  this.storageListeners,
  this.localDirectory,
) {
  storageDatabase.onClear(() => _initLocalDirectory(
        storageListeners,
        explorerSource,
        path: localDirectory.ioDirectory.path,
      ));
}