mapRightAsync<TR> method
- @Deprecated('Should use mapRight')
- Future<
TR> fnR(- 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));