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