mapLeft<E2> method

TaskEitherBuilder<E2, A> mapLeft<E2>(
  1. E2 left(
    1. E
    )
)

Implementation

TaskEitherBuilder<E2, A> mapLeft<E2>(
  E2 Function(E) left,
) =>
    TaskEitherBuilder(TE.mapLeft(left)(_f));