deleteFriendGroup method

Future<V2TimCallback> deleteFriendGroup({
  1. required List<String> groupNameList,
})

删除好友分组

Implementation

Future<V2TimCallback> deleteFriendGroup({
  required List<String> groupNameList,
}) async {
  return TencentCloudChatSdkPlatform.instance
      .deleteFriendGroup(groupNameList: groupNameList);
}