fire method

Future<void> fire(
  1. Event<T> event
)

Implementation

Future<void> fire(Event<T> event) async {
  await _bus.fire(event);
}