run<R> method

Call<R, AsyncValue<T>> run<R>(
  1. Future<R> body(
    1. Ref<AsyncValue<T>> ref
    )
)

Implementation

Call<R, AsyncValue<T>> run<R>(
  Future<R> Function(Ref<AsyncValue<T>> ref) body,
) => _RunCall<R, AsyncValue<T>>(
  this,
  body,
  (container) => container.read<AsyncValue<T>>(this),
);