Rss1Feed constructor

const Rss1Feed({
  1. String? title,
  2. String? description,
  3. String? link,
  4. List<Rss1Item> items = const <Rss1Item>[],
  5. String? image,
  6. UpdatePeriod? updatePeriod,
  7. int? updateFrequency,
  8. DateTime? updateBase,
  9. DublinCore? dc,
})

Implementation

const Rss1Feed({
  this.title,
  this.description,
  this.link,
  this.items = const <Rss1Item>[],
  this.image,
  this.updatePeriod,
  this.updateFrequency,
  this.updateBase,
  this.dc,
});