Comment constructor

Comment({
  1. String? anchor,
  2. User? author,
  3. String? commentId,
  4. String? content,
  5. CommentContext? context,
  6. DateTime? createdDate,
  7. bool? deleted,
  8. String? fileId,
  9. String? fileTitle,
  10. String? htmlContent,
  11. String? kind,
  12. DateTime? modifiedDate,
  13. List<CommentReply>? replies,
  14. String? selfLink,
  15. String? status,
})

Implementation

Comment({
  this.anchor,
  this.author,
  this.commentId,
  this.content,
  this.context,
  this.createdDate,
  this.deleted,
  this.fileId,
  this.fileTitle,
  this.htmlContent,
  this.kind,
  this.modifiedDate,
  this.replies,
  this.selfLink,
  this.status,
});