mapAsync<T> method

AsyncEither<L, T> mapAsync<T>(
  1. FutureOr<T> f(
    1. R
    )
)

Implementation

AsyncEither<L, T> mapAsync<T>(FutureOr<T> Function(R) f) async =>
    (await this).mapAsync(f);