publishEvent<T> method
void
publishEvent<T>(
- T event
Publish an object across the system event bus.
This can then be picked up using inqvine.getEventStream
Implementation
void publishEvent<T>(T event) => _eventBus.fire(event);