WebhookEnvelope constructor

const WebhookEnvelope({
  1. required String id,
  2. required String event,
  3. String? createdOn,
  4. String? accountId,
  5. String? projectId,
  6. String? triggerId,
  7. dynamic data,
})

Implementation

const WebhookEnvelope({
  required this.id,
  required this.event,
  this.createdOn,
  this.accountId,
  this.projectId,
  this.triggerId,
  this.data,
});