notify method

void notify(
  1. Event event
)

Implementation

void notify(Event event) {
  if (_eventStreamController.isClosed) return;
  _eventStreamController.add(event);
}