fire<T> static method
Implementation
static void fire<T>(T event, {EventBus? eventBus}) {
eventBus ??= _eventBus;
if (_debugLog) log('🔥 Event fired: ${event.runtimeType}', name: 'EVENT GO_ROUTER_MODULAR');
eventBus.fire(event);
}