mapLeftAsync<TL> method
- @Deprecated('Should use mapLeft')
- Future<
TL> fnL(- L left
Async transform value of Left
Implementation
@Deprecated('Should use mapLeft')
Future<Either<TL, R>> mapLeftAsync<TL>(Future<TL> Function(L left) fnL) =>
this.then((either) => either.mapLeftAsync(fnL));