stateHistory property

List<T> get stateHistory

List of all states that have been emitted, including the initial state. Returns a copy to prevent external modification.

Implementation

List<T> get stateHistory {
  _checkNotDisposed();
  return List<T>.unmodifiable(_stateHistory);
}