value property
The current value stored in this notifier.
When the value is replaced with something that is not equal to the old value as evaluated by the equality operator ==, this class notifies its listeners.
Implementation
@override
T get value {
_rxMainContext.reportRead(this);
if (_value is Listenable) {
_rxMainContext.reportRead(super.value as Listenable);
}
return _value;
}
The current value stored in this notifier.
Implementation
@override
set value(T newValue) {
_value = newValue;
notifyListeners();
}