getFriendGroups method

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

获取分组信息

参数

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

Implementation

@override
Future<V2TimValueCallback<List<V2TimFriendGroup>>> getFriendGroups({
  List<String>? groupNameList,
}) async {
  Map<String, dynamic> param = {
    "groupNameList": groupNameList,
  };
  var resp = V2TimValueCallback<List<V2TimFriendGroup>>.fromJson(
    formatJson(
      await _channel.invokeMethod(
        "getFriendGroups",
        buildFriendManagerParam(
          param,
        ),
      ),
    ),
  );
  log("getFriendGroups", param, resp.toLogString());
  return resp;
}