PersistedState<T> constructor

PersistedState<T>(
  1. String _key,
  2. Store _store,
  3. Future<T> _initialiser()
)

Implementation

PersistedState(this._key, this._store, this._initialiser) {
  _ready = _readyCompleter.future;
}