Comment constructor

Comment({
  1. String? anchor,
  2. User? author,
  3. String? content,
  4. DateTime? createdTime,
  5. bool? deleted,
  6. String? htmlContent,
  7. String? id,
  8. String? kind,
  9. DateTime? modifiedTime,
  10. CommentQuotedFileContent? quotedFileContent,
  11. List<Reply>? replies,
  12. bool? resolved,
})

Implementation

Comment({
  this.anchor,
  this.author,
  this.content,
  this.createdTime,
  this.deleted,
  this.htmlContent,
  this.id,
  this.kind,
  this.modifiedTime,
  this.quotedFileContent,
  this.replies,
  this.resolved,
});