AtomFeed constructor
const
AtomFeed({
- String? id,
- String? title,
- String? updated,
- List<
AtomItem> items = const <AtomItem>[], - List<
AtomLink> links = const <AtomLink>[], - List<
AtomPerson> authors = const <AtomPerson>[], - List<
AtomPerson> contributors = const <AtomPerson>[], - List<
AtomCategory> categories = const <AtomCategory>[], - AtomGenerator? generator,
- String? icon,
- String? logo,
- String? rights,
- String? subtitle,
Implementation
const AtomFeed({
this.id,
this.title,
this.updated,
this.items = const <AtomItem>[],
this.links = const <AtomLink>[],
this.authors = const <AtomPerson>[],
this.contributors = const <AtomPerson>[],
this.categories = const <AtomCategory>[],
this.generator,
this.icon,
this.logo,
this.rights,
this.subtitle,
});