letAsync method

Future<R> letAsync(
  1. Future<R> function(
    1. Object
    )
)

Implementation

Future<R> letAsync(Future<R> Function(Object) function) async {
  return await function(this);
}