AtomFeed constructor

AtomFeed({
  1. String? id,
  2. String? title,
  3. DateTime? updated,
  4. List<AtomItem>? items,
  5. List<AtomLink>? links,
  6. List<AtomPerson>? authors,
  7. List<AtomPerson>? contributors,
  8. List<AtomCategory>? categories,
  9. AtomGenerator? generator,
  10. String? icon,
  11. String? rights,
  12. String? subtitle,
})

Implementation

AtomFeed({
  this.id,
  this.title,
  this.updated,
  this.items,
  this.links,
  this.authors,
  this.contributors,
  this.categories,
  this.generator,
  this.icon,
  this.logo,
  this.rights,
  this.subtitle,
});