state property
The current "state" of this StateNotifier
.
Updating this variable will synchronously call all the listeners. Notifying the listeners is O(N) with N the number of listeners.
Updating the state will throw if at least one listener throws.
Implementation
@override
Configuration get state => super.state;
Implementation
@override
set state(Configuration state) => super.state = state;