Post constructor

Post(
  1. List<String> to,
  2. String? name,
  3. String? summary,
  4. bool? sensitive,
  5. String? inReplyTo,
  6. String content,
  7. String id,
  8. String type,
  9. DateTime published,
  10. String attributedTo,
  11. Collection? replies,
  12. List<Document>? attachment,
)

Implementation

Post(
  this.to,
  this.name,
  this.summary,
  this.sensitive,
  this.inReplyTo,
  this.content,
  this.id,
  this.type,
  this.published,
  this.attributedTo,
  this.replies,
  this.attachment,
);