add method

void add(
  1. T event
)

Implementation

void add(T event) {
  if (!isClosed) _replaySubject.add(event);
}