mapRightAsync<TR> method

  1. @Deprecated('Should use mapRight')
Future<Either<L, TR>> mapRightAsync<TR>(
  1. Future<TR> fnR(
    1. R right
    )
)

Async transform value of Right

Implementation

@Deprecated('Should use mapRight')
Future<Either<L, TR>> mapRightAsync<TR>(Future<TR> Function(R right) fnR) =>
    this.then((either) => either.mapAsync(fnR));