add method

void add(
  1. T value
)

Implementation

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