App.fromJson constructor
App.fromJson(
- Map json
Implementation
factory App.fromJson(Map<dynamic, dynamic> json) {
return App(
title: json['title'],
description: json['description'],
descriptionHTML: json['descriptionHTML'],
summary: json['summary'],
installs: json['installs'],
minInstalls: json['minInstalls'],
score: json['score'],
ratings: json['ratings'],
reviews: json['reviews'],
histogram: json['histogram'],
price: json['price'],
isFree: json['free'],
currency: json['currency'],
isSale: json['sale'],
saleTime: json['saleTime'],
originalPrice: json['originalPrice'],
saleText: json['saleText'],
offersIAP: json['offersIAP'],
inAppProductsPrice: json['inAppProductPrice'],
devoloper: json['devoloper'],
devoloperId: json['devoloperId'],
devoloperEmail: json['devoloperEmail'],
devoloperWebsite: json['devoloperWebsite'],
devoloperAddress: json['devoloperAddress'],
privacyPolicy: json['privacyPolicy'],
genre: json['genre'],
genreId: json['genreId'],
icon: json['icon'],
headerImage: json['headerImage'],
screenshots: json['screenshots'],
video: json['video'],
videoImage: json['videoImage'],
contentRating: json['contentRating'],
contentRatingDescription: json['contentRatingDescription'],
adSupported: json['adSupported'],
containsAds: json['containsAds'],
released: json['released'],
updated: json['updated'].toString(),
version: json['version'],
recentChanges: json['recentChanges'],
recentChangesHTML: json['recentChangesHTML'],
comments: json['comments'],
appId: json['appId'],
url: json['url']);
}