参考文档:电梯直达 EventBusUtils //订阅者回调签名 typedef void EventCallback(arg); ///* 作者:guoyzh ///* 时间:2020年1月7日 ///* 功能:创建eventBus工具类 class EventBus { /// 私有构造函数 EventBus._internal(); /// 保存单例 static EventBus _singleton = new EventBus._internal(); /// 工厂构造函数 factory EventBus() => _singleton; /// 保