mapLeftAsync<TL> abstract method

Future<Either<TL, R>> mapLeftAsync<TL>(
  1. FutureOr<TL> fnL(
    1. L left
    )
)

Transform value of Left

Implementation

Future<Either<TL, R>> mapLeftAsync<TL>(FutureOr<TL> Function(L left) fnL);