onEventBus<T> method

StreamSubscription<T> onEventBus<T>(
  1. void onData(
    1. T event
    )
)

监听事件 返回的 StreamSubscription 需要调用 dispose 进行清理。

Implementation

StreamSubscription<T> onEventBus<T>(void Function(T event) onData) {
  return EventBus().on<T>().listen(onData);
}