CommentEvent constructor

CommentEvent({
  1. int id = 0,
  2. String? nodeId,
  3. String? url,
  4. User? actor,
  5. String event = 'commented',
  6. String? commitId,
  7. String? commitUrl,
  8. DateTime? createdAt,
  9. GitHubApp? performedViaGithubApp,
  10. String? authorAssociation,
  11. String? body,
  12. String? bodyHtml,
  13. String? bodyText,
  14. String? htmlUrl,
  15. String? issueUrl,
  16. ReactionRollup? reactions,
  17. DateTime? updatedAt,
  18. User? user,
})

Implementation

CommentEvent({
  super.id = 0,
  super.nodeId,
  super.url,
  super.actor,
  super.event = 'commented',
  super.commitId,
  super.commitUrl,
  super.createdAt,
  super.performedViaGithubApp,
  this.authorAssociation,
  this.body,
  this.bodyHtml,
  this.bodyText,
  this.htmlUrl,
  this.issueUrl,
  this.reactions,
  this.updatedAt,
  this.user,
});