run<R> method

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

Implementation

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