提交工单
咨询集成、功能及报价等问题
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;
}
联系我们
文档反馈