RssItemItunes constructor

const RssItemItunes({
  1. String? title,
  2. int? episode,
  3. int? season,
  4. Duration? duration,
  5. RssItunesEpisodeType? episodeType,
  6. String? author,
  7. String? summary,
  8. bool? explicit,
  9. String? subtitle,
  10. List<String> keywords = const <String>[],
  11. RssItunesImage? image,
  12. RssItunesCategory? category,
  13. bool? block,
})

Implementation

const RssItemItunes({
  this.title,
  this.episode,
  this.season,
  this.duration,
  this.episodeType,
  this.author,
  this.summary,
  this.explicit,
  this.subtitle,
  this.keywords = const <String>[],
  this.image,
  this.category,
  this.block,
});