sendEvent<T> function

dynamic sendEvent<T>(
  1. T event
)

发送事件总线

Implementation

sendEvent<T>(T event) {
  eventBus.fire(event);
}