value property
The current value of the object. When the value changes, the callbacks registered with addListener will be invoked.
Implementation
@override
T get value {
PodTracker.reportRead(this);
return _value;
}
Implementation
@override
set value(T newValue) {
super.value =
newValue; // Updates memory graph & triggers batching sync naturally
_persistValue(newValue);
}