RssItem constructor

const RssItem({
  1. String? title,
  2. String? description,
  3. String? link,
  4. List<RssCategory> categories = const <RssCategory>[],
  5. String? guid,
  6. String? pubDate,
  7. String? author,
  8. String? comments,
  9. RssSource? source,
  10. RssContent? content,
  11. Media? media,
  12. RssEnclosure? enclosure,
  13. DublinCore? dc,
  14. RssItemItunes? itunes,
  15. RssItemPodcastIndex? podcastIndex,
})

Implementation

const RssItem({
  this.title,
  this.description,
  this.link,
  this.categories = const <RssCategory>[],
  this.guid,
  this.pubDate,
  this.author,
  this.comments,
  this.source,
  this.content,
  this.media,
  this.enclosure,
  this.dc,
  this.itunes,
  this.podcastIndex,
});