AtomItem constructor

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

Implementation

AtomItem({
  this.id,
  this.title,
  this.updated,
  this.authors,
  this.links,
  this.categories,
  this.contributors,
  this.source,
  this.published,
  this.content,
  this.summary,
  this.rights,
  this.media,
});