产品 / 解决方案
平台 / 框架

ZIM Flutter sendMessage 接口的 ZIMMessageSentCallback 中没有暴露 errorcode,该如何获取呢?

产品 / 插件:即时通讯

平台 / 框架:Flutter

更新时间:2024-07-03 18:14


您可以通过捕获 PlatformException 异常的方式来获取 errorcode,详情可参考以下代码片段。

try { 
    var ret = await ZIM.getInstance()!.sendMessage(
        message, 
        obj.toUserID, 
        ZIMConversationType.peer, 
        config, 
        messageSendNotification); 
    } 
on PlatformException catch (onError) {
     onError.code; onError.message; 
}
本篇目录
下载 PDF