letAsync<R> method

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

Implementation

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