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