RssFeed constructor

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

Implementation

const RssFeed({
  this.title,
  this.author,
  this.description,
  this.link,
  this.items = const <RssItem>[],
  this.image,
  this.cloud,
  this.categories = const <RssCategory>[],
  this.skipDays = const <String>[],
  this.skipHours = const <int>[],
  this.pubDate,
  this.lastBuildDate,
  this.language,
  this.generator,
  this.copyright,
  this.docs,
  this.managingEditor,
  this.rating,
  this.webMaster,
  this.ttl = 0,
  this.dc,
  this.itunes,
  this.podcastIndex,
});