deleteGroupAttributes method
删除指定群属性,keys 传 null 则清空所有群属性。
Implementation
Future<V2TimCallback> deleteGroupAttributes({
required String groupID,
required List<String> keys,
}) async {
return ImFlutterPlatform.instance
.deleteGroupAttributes(groupID: groupID, keys: keys);
}