一、创建EventBusUtils.dart类文件
倒入头文件
1、import 'package:event_bus/event_bus.dart';
2、创建单例模式
class EventBusUtils {
static EventBus _eventBus;
static EventBus getInstance() {
if (_eventBus == null) {
_eventBus = EventBus();
}
return _eventBus;
} }
3、创建广播通知方法
class updateListEvent {
String type;
updateListEvent(this.type); }
二、在需要发送通知/广播 组件页面 触发 方法
EventBusUtils.getInstance().fire(updateListEvent("update"));