getFriendGroups method
获取分组信息
参数
groupNameList 要获取信息的好友分组名称列表,传入 null 获得所有分组信息
Implementation
@override
Future<V2TimValueCallback<List<V2TimFriendGroup>>> getFriendGroups({
List<String>? groupNameList,
}) async {
return V2TimValueCallback<List<V2TimFriendGroup>>.fromJson(
formatJson(
await _channel.invokeMethod(
"getFriendGroups",
buildFriendManagerParam(
{
"groupNameList": groupNameList,
},
),
),
),
);
}