copyWith method
      
WebhookUpdateAcknowledgedWebhook
copyWith({ 
    
    
- String? webhookType,
- String? webhookCode,
- String? itemId,
- String? newWebhookUrl,
- PlaidError? error,
- WebhookEnvironmentValues? environment,
Implementation
WebhookUpdateAcknowledgedWebhook copyWith(
    {String? webhookType,
    String? webhookCode,
    String? itemId,
    String? newWebhookUrl,
    PlaidError? error,
    enums.WebhookEnvironmentValues? environment}) {
  return WebhookUpdateAcknowledgedWebhook(
      webhookType: webhookType ?? this.webhookType,
      webhookCode: webhookCode ?? this.webhookCode,
      itemId: itemId ?? this.itemId,
      newWebhookUrl: newWebhookUrl ?? this.newWebhookUrl,
      error: error ?? this.error,
      environment: environment ?? this.environment);
}