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 {
RxTracking.track(this);
return super.value;
}
Implementation
@override
set value(T newValue) {
throw UnsupportedError(
'Cannot set value of computed reactive. Use dependencies instead.');
}