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