add method

void add(
  1. T value
)

Implementation

void add(T value) {
  _value = value;
  if (!_controller.isClosed) _controller.sink.add(value);
}