state property
GlobalState
get
state
Implementation
GlobalState get state => _state;
set
state
(GlobalState state)
Implementation
set state(GlobalState state) {
_state = state;
if (isDisposed) {
return;
}
notifyListeners();
}