AppBannerResponse.fromJson constructor
Implementation
factory AppBannerResponse.fromJson(Map<String, dynamic> json) {
return AppBannerResponse(
rows:
List<AppBanner>.from(json['rows'].map((x) => AppBanner.fromJson(x))),
count: json['count'],
);
}