GroupByResponse.fromJson constructor
GroupByResponse.fromJson(
- List json
Implementation
factory GroupByResponse.fromJson(List<dynamic> json) {
return GroupByResponse(
items: json.map((item) => GroupByItem.fromJson(item)).toList(),
);
}