getGroupAttributes method
获取指定群属性,keys 传 null 则获取所有群属性。
Implementation
@override
Future<V2TimValueCallback<Map<String, String>>> getGroupAttributes({
required String groupID,
List<String>? keys,
}) async {
return await _v2timGroupManager.getGroupAttributes({"groupID": groupID, "keys": keys});
}