updateConversation method

Future<NIMResult<void>> updateConversation(
  1. String conversationId,
  2. NIMConversationUpdate updateInfo
)

更新会话 conversationId – 会话id updateInfo – 更新信息

Implementation

Future<NIMResult<void>> updateConversation(
    String conversationId, NIMConversationUpdate updateInfo) async {
  return _platform.updateConversation(conversationId, updateInfo);
}