AtomFeed constructor
AtomFeed({
- String? id,
- String? title,
- DateTime? updated,
- List<
AtomItem> ? items, - List<
AtomLink> ? links, - List<
AtomPerson> ? authors, - List<
AtomPerson> ? contributors, - List<
AtomCategory> ? categories, - AtomGenerator? generator,
- String? icon,
- String? logo,
- String? rights,
- 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,
});