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