verticalFeedGroupFromJson function
Implementation
List<VerticalFeedGroup> verticalFeedGroupFromJson(List<dynamic> json) {
return List<VerticalFeedGroup>.from(
json.map((x) => VerticalFeedGroup.fromJson(x)));
}
List<VerticalFeedGroup> verticalFeedGroupFromJson(List<dynamic> json) {
return List<VerticalFeedGroup>.from(
json.map((x) => VerticalFeedGroup.fromJson(x)));
}