createComputed<V> method

Computed<V> createComputed<V>(
  1. V cb(), {
  2. String? debugLabel,
})

Create a computed

Implementation

Computed<V> createComputed<V>(
  V Function() cb, {
  String? debugLabel,
}) {
  return _bindLocal(computed<V>(
    cb,
    debugLabel: debugLabel,
  ));
}