add method

void add(
  1. T newValue
)

Implementation

void add(T newValue) {
  _latestValue = newValue;
  _controller.add(newValue);
}