Reply constructor

Reply({
  1. String? action,
  2. User? author,
  3. String? content,
  4. DateTime? createdTime,
  5. bool? deleted,
  6. String? htmlContent,
  7. String? id,
  8. String? kind,
  9. DateTime? modifiedTime,
})

Implementation

Reply({
  this.action,
  this.author,
  this.content,
  this.createdTime,
  this.deleted,
  this.htmlContent,
  this.id,
  this.kind,
  this.modifiedTime,
});