asyncComputed<T> function

AsyncComputed<T> asyncComputed<T>(
  1. Future<T> compute()
)

Creates an instance of AsyncComputed with the given async function.

Implementation

AsyncComputed<T> asyncComputed<T>(Future<T> Function() compute) =>
    _kaeruContext.asyncComputed(compute);