AtomItem constructor

const AtomItem({
  1. String? id,
  2. String? title,
  3. String? updated,
  4. List<AtomPerson> authors = const <AtomPerson>[],
  5. List<AtomLink> links = const <AtomLink>[],
  6. List<AtomCategory> categories = const <AtomCategory>[],
  7. List<AtomPerson> contributors = const <AtomPerson>[],
  8. AtomSource? source,
  9. String? published,
  10. String? content,
  11. String? summary,
  12. String? rights,
  13. Media? media,
})

Implementation

const AtomItem({
  this.id,
  this.title,
  this.updated,
  this.authors = const <AtomPerson>[],
  this.links = const <AtomLink>[],
  this.categories = const <AtomCategory>[],
  this.contributors = const <AtomPerson>[],
  this.source,
  this.published,
  this.content,
  this.summary,
  this.rights,
  this.media,
});