doOnEither method

StreamEitherBuilder<E, A> doOnEither({
  1. required void left(
    1. E
    ),
  2. required void right(
    1. A
    ),
})

Implementation

StreamEitherBuilder<E, A> doOnEither({
  required void Function(E) left,
  required void Function(A) right,
}) =>
    StreamEitherBuilder(
      SE.doOnEither(
        left: left,
        right: right,
      )(_f),
    );