GitHubWebhookRelease constructor

const GitHubWebhookRelease({
  1. required Int32Type id,
  2. required String tagName,
  3. required String htmlUrl,
  4. String? body,
})

Implementation

const GitHubWebhookRelease({
  required this.id,
  required this.tagName,
  required this.htmlUrl,
  this.body,
});