GitHubWebhook constructor

const GitHubWebhook({
  1. required GitHubWebhookSender sender,
  2. String? action,
  3. GitHubWebhookAnswer? answer,
  4. GitHubWebhookCheckRun? checkRun,
  5. GitHubWebhookCheckSuite? checkSuite,
  6. GitHubWebhookComment? comment,
  7. List<GitHubWebhookCommits>? commits,
  8. String? compare,
  9. GitHubWebhookDiscussion? discussion,
  10. bool? forced,
  11. GitHubWebhookForkee? forkee,
  12. GitHubWebhookHeadCommit? headCommit,
  13. GitHubWebhookIssue? issue,
  14. GitHubWebhookMember? member,
  15. GitHubWebhookPullRequest? pullRequest,
  16. String? refType,
  17. String? ref,
  18. GitHubWebhookRelease? release,
  19. GitHubWebhookRepository? repository,
  20. GitHubWebhookReview? review,
})

Implementation

const GitHubWebhook({
  required this.sender,
  this.action,
  this.answer,
  this.checkRun,
  this.checkSuite,
  this.comment,
  this.commits,
  this.compare,
  this.discussion,
  this.forced,
  this.forkee,
  this.headCommit,
  this.issue,
  this.member,
  this.pullRequest,
  this.refType,
  this.ref,
  this.release,
  this.repository,
  this.review,
});