getFriendGroups method

Future<V2TimValueCallback<List<V2TimFriendGroup>>> getFriendGroups({
  1. List<String>? groupNameList,
})

获取分组信息

参数

groupNameList	要获取信息的好友分组名称列表,传入 null 获得所有分组信息

Implementation

Future<V2TimValueCallback<List<V2TimFriendGroup>>> getFriendGroups({
  List<String>? groupNameList,
}) async {
  return ImFlutterPlatform.instance
      .getFriendGroups(groupNameList: groupNameList);
}