add method

void add(
  1. T value
)

Implementation

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