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