You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@computed // OR use other annotations etc, all acceptable
Future<Something> myFunction() async {
var a = someObservableValue;
var b = await fetchSomeNetworkData();
var c = someOtherObservableValue; // NOTE this line
return ...;
}
Currently seems that computeds does not notice observable values across async gap.
The text was updated successfully, but these errors were encountered:
For example,
Currently seems that computeds does not notice observable values across async gap.
The text was updated successfully, but these errors were encountered: