Itunes constructor

Itunes({
  1. String? author,
  2. String? summary,
  3. bool? explicit,
  4. String? title,
  5. String? subtitle,
  6. ItunesOwner? owner,
  7. List<String>? keywords,
  8. ItunesImage? image,
  9. List<ItunesCategory>? categories,
  10. ItunesType? type,
  11. String? newFeedUrl,
  12. bool? block,
  13. bool? complete,
  14. int? episode,
  15. int? season,
  16. Duration? duration,
  17. ItunesEpisodeType? episodeType,
})

Implementation

Itunes({
  this.author,
  this.summary,
  this.explicit,
  this.title,
  this.subtitle,
  this.owner,
  this.keywords,
  this.image,
  this.categories,
  this.type,
  this.newFeedUrl,
  this.block,
  this.complete,
  this.episode,
  this.season,
  this.duration,
  this.episodeType,
});