doNext method

  1. @protected
  2. @mustCallSuper
void doNext(
  1. dynamic value
)

Passes the next value to the destination.

Implementation

@protected
@mustCallSuper
void doNext(dynamic value) => destination.next(value);