mapAsync<TR> abstract method

Future<Either<L, TR>> mapAsync<TR>(
  1. FutureOr<TR> fnR(
    1. R right
    )
)

Transform value of Right

Implementation

Future<Either<L, TR>> mapAsync<TR>(FutureOr<TR> Function(R right) fnR);