deleteConversationsFromGroup method
从一个会话分组中删除会话 4.0.8及以后版本支持,web不支持
Implementation
Future<V2TimValueCallback<List<V2TimConversationOperationResult>>>
deleteConversationsFromGroup({
required String groupName,
required List<String> conversationIDList,
}) async {
return TencentCloudChatSdkPlatform.instance.deleteConversationsFromGroup(
groupName: groupName,
conversationIDList: conversationIDList,
);
}