add method

  1. @override
void add (_)

Adds data to the sink.

Must not be called after a call to close.

Implementation

@override
void add(_) {
  _controller.add(_);
}