state property
Implementation
@override
State get state {
assert(_initialized,
'loadSavedState() must be called before access to the state value');
return super.state;
}
- @protected
inherited
Updates the State and notify to listeners and rebuild the widgets
state must be different of the current state
Implementation
@protected
set state(S newState) {
_update(newState);
}