DefaultStorageServerSettings constructor

DefaultStorageServerSettings(
  1. StorageService storageService, {
  2. StorageServerHandlers? cStorageServerHandlers,
})

Implementation

DefaultStorageServerSettings(
  this.storageService, {
  StorageServerHandlers? cStorageServerHandlers,
}) {
  storageServerHandlers = cStorageServerHandlers ??
      DefaultStorageServerHandlers(storageService: storageService);
}