App constructor

App({
  1. String? title,
  2. String? description,
  3. String? descriptionHTML,
  4. String? summary,
  5. String? installs,
  6. int? minInstalls,
  7. double? score,
  8. int? ratings,
  9. int? reviews,
  10. List<int>? histogram,
  11. double? price,
  12. bool? isFree,
  13. String? currency,
  14. bool? isSale,
  15. String? saleTime,
  16. double? originalPrice,
  17. String? saleText,
  18. bool? offersIAP,
  19. String? inAppProductsPrice,
  20. String? devoloper,
  21. String? devoloperId,
  22. String? devoloperEmail,
  23. String? devoloperWebsite,
  24. String? devoloperAddress,
  25. String? privacyPolicy,
  26. String? genre,
  27. String? genreId,
  28. String? icon,
  29. String? headerImage,
  30. List? screenshots,
  31. String? video,
  32. String? videoImage,
  33. String? contentRating,
  34. String? contentRatingDescription,
  35. bool? adSupported,
  36. bool? containsAds,
  37. String? released,
  38. String? updated,
  39. String? version,
  40. String? recentChanges,
  41. String? recentChangesHTML,
  42. List? comments,
  43. required String appId,
  44. required String url,
})

Implementation

App(
    {this.title,
    this.description,
    this.descriptionHTML,
    this.summary,
    this.installs,
    this.minInstalls,
    this.score,
    this.ratings,
    this.reviews,
    this.histogram,
    this.price,
    this.isFree,
    this.currency,
    this.isSale,
    this.saleTime,
    this.originalPrice,
    this.saleText,
    this.offersIAP,
    this.inAppProductsPrice,
    this.devoloper,
    this.devoloperId,
    this.devoloperEmail,
    this.devoloperWebsite,
    this.devoloperAddress,
    this.privacyPolicy,
    this.genre,
    this.genreId,
    this.icon,
    this.headerImage,
    this.screenshots,
    this.video,
    this.videoImage,
    this.contentRating,
    this.contentRatingDescription,
    this.adSupported,
    this.containsAds,
    this.released,
    this.updated,
    this.version,
    this.recentChanges,
    this.recentChangesHTML,
    this.comments,
    required this.appId,
    required this.url});