Item constructor

Item({
  1. int? artistId,
  2. int? collectionId,
  3. int? trackId,
  4. String? guid,
  5. String? artistName,
  6. String? collectionName,
  7. String? trackName,
  8. int? trackCount,
  9. String? collectionCensoredName,
  10. String? trackCensoredName,
  11. String? artistViewUrl,
  12. String? collectionViewUrl,
  13. String? feedUrl,
  14. String? trackViewUrl,
  15. String? collectionExplicitness,
  16. String? trackExplicitness,
  17. String? artworkUrl30,
  18. String? artworkUrl60,
  19. String? artworkUrl100,
  20. String? artworkUrl600,
  21. String? artworkUrl,
  22. DateTime? releaseDate,
  23. String? country,
  24. String? primaryGenreName,
  25. String? contentAdvisoryRating,
  26. List<Genre>? genre,
})

Implementation

Item({
  this.artistId,
  this.collectionId,
  this.trackId,
  this.guid,
  this.artistName,
  this.collectionName,
  this.trackName,
  this.trackCount,
  this.collectionCensoredName,
  this.trackCensoredName,
  this.artistViewUrl,
  this.collectionViewUrl,
  this.feedUrl,
  this.trackViewUrl,
  this.collectionExplicitness,
  this.trackExplicitness,
  this.artworkUrl30,
  this.artworkUrl60,
  this.artworkUrl100,
  this.artworkUrl600,
  this.artworkUrl,
  this.releaseDate,
  this.country,
  this.primaryGenreName,
  this.contentAdvisoryRating,
  this.genre,
});