Comment constructor

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

Implementation

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