copyWith method
Implementation
HistoricalUpdateWebhook copyWith(
{String? webhookType,
String? webhookCode,
Error? error,
double? newTransactions,
String? itemId}) {
return HistoricalUpdateWebhook(
webhookType: webhookType ?? this.webhookType,
webhookCode: webhookCode ?? this.webhookCode,
error: error ?? this.error,
newTransactions: newTransactions ?? this.newTransactions,
itemId: itemId ?? this.itemId);
}