copyWithWrapped method
Implementation
BankTransferSweep copyWithWrapped(
{Wrapped<String>? id,
Wrapped<DateTime>? createdAt,
Wrapped<String>? amount,
Wrapped<String>? isoCurrencyCode}) {
return BankTransferSweep(
id: (id != null ? id.value : this.id),
createdAt: (createdAt != null ? createdAt.value : this.createdAt),
amount: (amount != null ? amount.value : this.amount),
isoCurrencyCode: (isoCurrencyCode != null
? isoCurrencyCode.value
: this.isoCurrencyCode));
}