GitHubWebhookIssue constructor

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

Implementation

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