Comment constructor

Comment({
  1. CommentAuthor? author,
  2. CommentBlog? blog,
  3. String? content,
  4. String? id,
  5. CommentInReplyTo? inReplyTo,
  6. String? kind,
  7. CommentPost? post,
  8. String? published,
  9. String? selfLink,
  10. String? status,
  11. String? updated,
})

Implementation

Comment({
  this.author,
  this.blog,
  this.content,
  this.id,
  this.inReplyTo,
  this.kind,
  this.post,
  this.published,
  this.selfLink,
  this.status,
  this.updated,
});