The current value stored in this notifier.
When the value is replaced, this class notifies its listeners.
Source
T get value => _value;
Source
set value(T newValue) { if (_value == newValue) return; _value = newValue; notifyListeners(); }
The current value stored in this notifier.
When the value is replaced, this class notifies its listeners.
T get value => _value;
set value(T newValue) { if (_value == newValue) return; _value = newValue; notifyListeners(); }