Event getEvent(String name) { final event = _events[name]; if (event == null) { throw StateError('Event not found: $name'); } return event; }