value property
The current value of the state.
Implementation
@protected
T get value {
reportRead();
return _value as T;
}
Sets the value and notifies listeners.
Implementation
@protected
set value(T newValue) {
if (_value == newValue) return;
_value = newValue;
refresh();
}