We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13c2ae commit a957244Copy full SHA for a957244
docs/documentation/watch_it/more_watch_functions.md
@@ -34,7 +34,7 @@ final manager = watch(di<CounterManager>());
34
35
// These are equivalent:
36
final count = watchValue((CounterManager m) => m.count);
37
-final count = watch(di<CounterManager>().count);
+final count = watch(di<CounterManager>().count).value;
38
```
39
40
**Why use the convenience functions?**
0 commit comments