AppStoreAppDetails constructor

AppStoreAppDetails({
  1. required num id,
  2. required String appId,
  3. required String? title,
  4. required String? url,
  5. required String? description,
  6. required String? icon,
  7. required List<String> genres,
  8. required List<String> genreIds,
  9. required String? primaryGenre,
  10. required num? primaryGenreId,
  11. required String? contentRating,
  12. required List<String> languages,
  13. required String? size,
  14. required String? requiredOsVersion,
  15. required DateTime? released,
  16. required DateTime? updated,
  17. required String? releaseNotes,
  18. required String version,
  19. required num? price,
  20. required String? currency,
  21. required bool? free,
  22. required num? developerId,
  23. required String? developer,
  24. required String? developerUrl,
  25. required String? developerWebsite,
  26. required num? score,
  27. required num? reviews,
  28. required num? currentVersionScore,
  29. required num? currentVersionReviews,
  30. required List<String> screenshots,
  31. required List<String> ipadScreenshots,
  32. required List<String> appletvScreenshots,
  33. required List<String> supportedDevices,
})

Implementation

AppStoreAppDetails({
  required this.id,
  required this.appId,
  required this.title,
  required this.url,
  required this.description,
  required this.icon,
  required this.genres,
  required this.genreIds,
  required this.primaryGenre,
  required this.primaryGenreId,
  required this.contentRating,
  required this.languages,
  required this.size,
  required this.requiredOsVersion,
  required this.released,
  required this.updated,
  required this.releaseNotes,
  required this.version,
  required this.price,
  required this.currency,
  required this.free,
  required this.developerId,
  required this.developer,
  required this.developerUrl,
  required this.developerWebsite,
  required this.score,
  required this.reviews,
  required this.currentVersionScore,
  required this.currentVersionReviews,
  required this.screenshots,
  required this.ipadScreenshots,
  required this.appletvScreenshots,
  required this.supportedDevices,
});