WebhookHandleResult constructor

const WebhookHandleResult({
  1. bool received = true,
  2. required String event,
  3. required String deliveryId,
  4. bool? verified,
  5. bool handled = false,
  6. String? triggerId,
})

Implementation

const WebhookHandleResult({
  this.received = true,
  required this.event,
  required this.deliveryId,
  this.verified,
  this.handled = false,
  this.triggerId,
});