copyWith method

VerificationExpiredWebhook copyWith({
  1. String? webhookType,
  2. String? webhookCode,
  3. String? itemId,
  4. String? accountId,
  5. WebhookEnvironmentValues? environment,
})

Implementation

VerificationExpiredWebhook copyWith(
    {String? webhookType,
    String? webhookCode,
    String? itemId,
    String? accountId,
    enums.WebhookEnvironmentValues? environment}) {
  return VerificationExpiredWebhook(
      webhookType: webhookType ?? this.webhookType,
      webhookCode: webhookCode ?? this.webhookCode,
      itemId: itemId ?? this.itemId,
      accountId: accountId ?? this.accountId,
      environment: environment ?? this.environment);
}