createComputed<V> method
Create a computed<T> and watch for changes
Implementation
FlutterComputed<V> createComputed<V>(
V Function() cb, {
String? debugLabel,
}) {
return _bindLocal(
computed<V>(
cb,
debugLabel: debugLabel,
),
);
}