GitHubWebhookPullRequest constructor

const GitHubWebhookPullRequest({
  1. required Int64Type id,
  2. required Int32Type number,
  3. required String htmlUrl,
  4. required GitHubWebhookPullRequestUser user,
  5. required String title,
  6. String? body,
})

Implementation

const GitHubWebhookPullRequest({
  required this.id,
  required this.number,
  required this.htmlUrl,
  required this.user,
  required this.title,
  this.body,
});