useComputedState<T> function

MutableComputedState<T> useComputedState<T>(
  1. Future<T> compute()
)

Implementation

MutableComputedState<T> useComputedState<T>(Future<T> Function() compute) =>
    useDebugGroup(debugLabel: 'useComputedState<$T>()', () => _useComputedState(compute));