add method

void add(
  1. T? data
)

Implementation

void add(T? data) {
  _stream.update(data);
}