doOnRight method

StreamEitherBuilder<E, A> doOnRight(
  1. void procedure(
    1. A
    )
)

Implementation

StreamEitherBuilder<E, A> doOnRight(
  void Function(A) procedure,
) =>
    StreamEitherBuilder(SE.doOnRight(procedure)(_f));