RssItem constructor

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

Implementation

RssItem({
  this.title,
  this.description,
  this.link,
  this.categories,
  this.guid,
  this.pubDate,
  this.author,
  this.comments,
  this.source,
  this.content,
  this.media,
  this.enclosure,
  this.dc,
  this.itunes,
});