onLeft method

  1. @override
EitherExtended<L, R> onLeft(
  1. void callBack(
    1. L l
    )
)
override

Implementation

@override
EitherExtended<L, R> onLeft(void Function(L l) callBack) {
  callBack(_l);
  return this;
}