Reply constructor

Reply({
  1. String? action,
  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,
})

Implementation

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