mapRight<TR> method

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

Transform value of Right

Implementation

Future<Either<L, TR>> mapRight<TR>(FutureOr<TR> Function(R right) fnR) =>
    this.then((either) => either.mapAsync(fnR));