createConversationGroup method
创建好友分组 4.0.8及以后版本支持,web不支持 会话分组最大支持 20 个,不再使用的分组请及时删除。
Implementation
Future<V2TimValueCallback<List<V2TimConversationOperationResult>>>
createConversationGroup({
required String groupName,
required List<String> conversationIDList,
}) async {
return TencentCloudChatSdkPlatform.instance.createConversationGroup(
groupName: groupName, conversationIDList: conversationIDList);
}