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,
})

Constructor for creating an AtomFeed object.

The constructor initializes an AtomFeed object with the following parameters:

  • id: The unique identifier for the feed.
  • title: The title of the feed.
  • updated: The date and time when the feed was last updated.
  • items: The list of items (entries) in the feed.
  • links: The list of links related to the feed.
  • authors: The list of authors of the feed.
  • contributors: The list of contributors to the feed.
  • categories: The list of categories associated with the feed.
  • generator: The generator information for the feed.
  • icon: The URL to an icon representing the feed.
  • logo: The URL to a logo representing the feed.
  • rights: The rights information for the feed.
  • subtitle: The subtitle or tagline of the feed.

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,
});