RADAggregate.fromJson constructor
Implementation
@override
factory RADAggregate.fromJson(Map<String, dynamic> json) => RADAggregate(
filters: List<RADFilter>.from(
json["filters"].map((x) => RADFilter.fromJson(x))),
reducer: json["reducer"],
);