StorageProvider constructor

StorageProvider(
  1. CoreStorage _storage, {
  2. String? password,
  3. bool logEnabled = false,
})

Implementation

StorageProvider(this._storage, {String? password, this.logEnabled = false}) {
  assert(password != null);
  _storageSecurity = StorageSecurity(password);
  _storage.init();
  _initSubjects();
}