AtomFeed constructor

const AtomFeed(
  1. {String? id,
  2. String? title,
  3. String? updated,
  4. List<AtomItem> items = const <AtomItem>[],
  5. List<AtomLink> links = const <AtomLink>[],
  6. List<AtomPerson> authors = const <AtomPerson>[],
  7. List<AtomPerson> contributors = const <AtomPerson>[],
  8. List<AtomCategory> categories = const <AtomCategory>[],
  9. AtomGenerator? generator,
  10. String? icon,
  11. String? rights,
  12. 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,
});