letAsync<R> method

Future<R> letAsync<R>(
  1. FutureOr<R> block(
    1. T
    )
)

Implementation

Future<R> letAsync<R>(FutureOr<R> Function(T) block) async =>
    block(await this);