state property

TState state

Implementation

TState get state => _state;
  1. @protected
void state=(TState state)

Implementation

@protected
set state(TState state) {
  if (_state != state) {
    this._state = state;
    this.notifyListeners();
  }
}