add method

void add(
  1. T? newValue
)

Implementation

void add(T? newValue) {
  this._currentValue = newValue;
  if (!_isClosing) {
    _controller.add(newValue);
  }
}