renameConversationGroup method
重命名会话分组 4.0.8及以后版本支持,web不支持
Implementation
Future<V2TimCallback> renameConversationGroup({
required String oldName,
required String newName,
}) async {
return TencentCloudChatSdkPlatform.instance.renameConversationGroup(
oldName: oldName,
newName: newName,
);
}