WebhookEvent constructor

const WebhookEvent({
  1. required String name,
  2. required String deliveryId,
  3. String? createdOn,
  4. String? triggerId,
  5. String? correlationId,
  6. String? accountId,
  7. String? projectId,
  8. String? integrationId,
  9. String? destinationId,
  10. bool? verified,
  11. required WebhookEventMetadata metadata,
  12. required WebhookEnvelope raw,
})

Implementation

const WebhookEvent({
  required this.name,
  required this.deliveryId,
  this.createdOn,
  this.triggerId,
  this.correlationId,
  this.accountId,
  this.projectId,
  this.integrationId,
  this.destinationId,
  this.verified,
  required this.metadata,
  required this.raw,
});