浏览 SDKs · Flutter
SDKsFlutter

设置消息本地扩展

更新 Flutter 当前设备的消息本地扩展字段。

复制
await OpenIM.iMManager.messageManager.setMessageLocalEx(
  conversationID: conversationID,
  clientMsgID: clientMsgID,
  localEx: jsonEncode({'expanded': true}),
);

localEx 是完整字符串,只修改当前设备,不同步到其他端,也不触发新消息 listener。写入前必须检查 clientMsgID 非空。