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