RssFeed constructor

RssFeed({
  1. String? title,
  2. String? author,
  3. String? description,
  4. String? link,
  5. List<RssItem>? items,
  6. RssImage? image,
  7. RssCloud? cloud,
  8. List<RssCategory>? categories,
  9. List<String>? skipDays,
  10. List<int>? skipHours,
  11. String? lastBuildDate,
  12. String? language,
  13. String? generator,
  14. String? copyright,
  15. String? docs,
  16. String? managingEditor,
  17. String? rating,
  18. String? webMaster,
  19. int? ttl,
  20. DublinCore? dc,
  21. Itunes? itunes,
  22. Syndication? syndication,
  23. Podcast? podcast,
})

Constructor for the RssFeed class.

Initialize the RSS feed properties such as title, author, description, link, items, image, cloud, categories, skipDays, skipHours, lastBuildDate, language, generator, copyright, docs, managingEditor, rating, webMaster, ttl, dc, itunes, syndication, and podcast.

Implementation

RssFeed({
  this.title,
  this.author,
  this.description,
  this.link,
  this.items,
  this.image,
  this.cloud,
  this.categories,
  this.skipDays,
  this.skipHours,
  this.lastBuildDate,
  this.language,
  this.generator,
  this.copyright,
  this.docs,
  this.managingEditor,
  this.rating,
  this.webMaster,
  this.ttl,
  this.dc,
  this.itunes,
  this.syndication,
  this.podcast,
});