onLeft method

AsyncEitherExtended<L, R> onLeft(
  1. void fn(
    1. L l
    )
)

Implementation

AsyncEitherExtended<L, R> onLeft(void Function(L l) fn) =>
    then((result) => result.onLeft(fn));