state property

  1. @nonVirtual
T state
inherited

Gets the current state.

Implementation

@nonVirtual
T get state => _state;
  1. @protected
void state=(T value)
inherited

Sets the state and notify listeners

Implementation

@protected
set state(T value) {
  _setState(value, null);
}