ReviewEvent constructor

ReviewEvent({
  1. int id = 0,
  2. String? nodeId,
  3. String? url,
  4. User? actor,
  5. String event = 'reviewed',
  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. ReviewLinks? links,
  16. String? pullRequestUrl,
  17. String? state,
  18. DateTime? submittedAt,
  19. User? user,
})

Implementation

ReviewEvent({
  super.id = 0,
  super.nodeId,
  super.url,
  super.actor,
  super.event = 'reviewed',
  super.commitId,
  super.commitUrl,
  super.createdAt,
  super.performedViaGithubApp,
  this.authorAssociation,
  this.body,
  this.bodyHtml,
  this.bodyText,
  this.htmlUrl,
  this.links,
  this.pullRequestUrl,
  this.state,
  this.submittedAt,
  this.user,
});