getGroupAttributes method

Future<V2TimValueCallback<Map<String, String>>> getGroupAttributes({
  1. required String groupID,
  2. List<String>? keys,
})

获取指定群属性,keys 传 null 则获取所有群属性。

Implementation

Future<V2TimValueCallback<Map<String, String>>> getGroupAttributes({
  required String groupID,
  List<String>? keys,
}) async {
  return ImFlutterPlatform.instance
      .getGroupAttributes(groupID: groupID, keys: keys);
}