您好,我使用flutter的即时通讯SDK:leancloud_official_plugin: ^1.0.0-beta.9
更新对话属性使用的是:
_conversation.updateInfo(attributes: {
'xxx': xxx,
});
查询对话使用的是:
List conversations;
ConversationQuery query = _me.conversationQuery();
query.whereEqualTo('objectId', widget.conversationId);
conversations = await query.find();
_conversation = conversations.first;
经测试,iOS设备可以查询到最新的对话属性,而安卓设备却不能。