add method

void add(
  1. Event event
)

Adds an event to a queue.

Implementation

void add(Event event) {
  _eventSubject.add(event);
}