copyWithWrapped method
Implementation
DepositSwitchTargetAccount copyWithWrapped(
{Wrapped<String>? accountNumber,
Wrapped<String>? routingNumber,
Wrapped<String>? accountName,
Wrapped<enums.DepositSwitchTargetAccountAccountSubtype>?
accountSubtype}) {
return DepositSwitchTargetAccount(
accountNumber:
(accountNumber != null ? accountNumber.value : this.accountNumber),
routingNumber:
(routingNumber != null ? routingNumber.value : this.routingNumber),
accountName:
(accountName != null ? accountName.value : this.accountName),
accountSubtype: (accountSubtype != null
? accountSubtype.value
: this.accountSubtype));
}