CommentReply constructor

CommentReply({
  1. User? author,
  2. String? content,
  3. DateTime? createdDate,
  4. bool? deleted,
  5. String? htmlContent,
  6. String? kind,
  7. DateTime? modifiedDate,
  8. String? replyId,
  9. String? verb,
})

Implementation

CommentReply({
  this.author,
  this.content,
  this.createdDate,
  this.deleted,
  this.htmlContent,
  this.kind,
  this.modifiedDate,
  this.replyId,
  this.verb,
});