value property
Returns the current computed value, ensuring the async computation starts when accessed.
Implementation
@override
T? get value {
getCurrentWatcher()?.addDepend(this);
_runDry();
return _value;
}
Returns the current computed value, ensuring the async computation starts when accessed.
@override
T? get value {
getCurrentWatcher()?.addDepend(this);
_runDry();
return _value;
}