WebhookPayload constructor

WebhookPayload(
  1. Map innerMap, {
  2. PayloadRepository? repository,
  3. Issue? issue,
  4. Issue? pullRequest,
  5. Sender? sender,
  6. String? action,
  7. Installation? installation,
  8. Comment? comment,
})

Constructs a new instance of the WebhookPayload class.

Implementation

WebhookPayload(
  super.innerMap, {
  this.repository,
  this.issue,
  this.pullRequest,
  this.sender,
  this.action,
  this.installation,
  this.comment,
});