WebhookEvent constructor

WebhookEvent({
  1. required String id,
  2. required WebhookEventTypeEnum type,
  3. required WebhookEventAttributes attributes,
  4. required WebhookEventRelationships relationships,
  5. required SelfLinks links,
})

Returns a new WebhookEvent instance.

Implementation

WebhookEvent({
  required this.id,
  required this.type,
  required this.attributes,
  required this.relationships,
  required this.links,
});