storage property
Storage
get
storage
Instance of Storage which will be used to
manage persisting/restoring the StateNotifier state.
Implementation
static Storage get storage {
if (_storage == null) throw const StorageNotFound();
return _storage!;
}
set
storage
(Storage? storage)
Implementation
static set storage(Storage? storage) => _storage = storage;