onEventBus<T> method
监听事件 返回的 StreamSubscription 需要调用 dispose
进行清理。
Implementation
StreamSubscription<T> onEventBus<T>(void Function(T event) onData) {
return EventBus().on<T>().listen(onData);
}
监听事件 返回的 StreamSubscription 需要调用 dispose
进行清理。
StreamSubscription<T> onEventBus<T>(void Function(T event) onData) {
return EventBus().on<T>().listen(onData);
}