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,
  15. PodcastItem? podcast,
  16. CustomNamespace? customNamespace,
})

Constructor for the RssItem class.

Initialize the RSS item properties such as title, description, link, categories, guid, pubDate, author, comments, source, content, media, enclosure, dc, itunes, podcast, and customNamespace.

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,
  this.podcast,
  this.customNamespace,
});