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