commit static method
已加订阅者-发送事件 eventName 事件名称 withMultiEngine 是否发送多引擎,默认true表示支持多引擎 data 传送的数据
Implementation
static void commit({required String eventName, bool? withMultiEngine = true, dynamic data}) {
if (withMultiEngine == true) {
/// 多引擎则交给原生处理
commitToMultiEngine(eventName: eventName, data: data);
} else {
/// 如果只支持当前引擎则直接调用
commitToCurrentEngine(eventName: eventName, data: data);
}
}