getFriendGroups method
获取分组信息
参数
groupNameList	要获取信息的好友分组名称列表,传入 null 获得所有分组信息
Implementation
Future<V2TimValueCallback<List<V2TimFriendGroup>>> getFriendGroups({
  List<String>? groupNameList,
}) async {
  if (kIsWeb) {
    return TencentCloudChatSdkPlatform.instance
        .getFriendGroups(groupNameList: groupNameList);
  }
  return TIMFriendshipManager.instance
      .getFriendGroups(groupNameList: groupNameList);
}