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