GroupByResponse.fromJson constructor

GroupByResponse.fromJson(
  1. List json
)

Implementation

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