WebhookRedriveResult constructor

WebhookRedriveResult({
  1. required String webhookResultId,
  2. required bool success,
  3. String? message,
})

Returns a new WebhookRedriveResult instance.

Implementation

WebhookRedriveResult({
  required this.webhookResultId,
  required this.success,
  this.message,
});