value property
The current value of the object. When the value changes, the callbacks registered with addListener will be invoked.
Implementation
@override
Object get value => _value;
set
value
(Object newValue)
Implementation
set value(Object newValue) {
if (_value == newValue) {
return;
}
_value = newValue;
notifyListeners();
}