copyWithWrapped method
Implementation
NumbersACHNullable copyWithWrapped(
{Wrapped<String>? accountId,
Wrapped<String>? account,
Wrapped<String>? routing,
Wrapped<String?>? wireRouting,
Wrapped<bool?>? canTransferIn,
Wrapped<bool?>? canTransferOut}) {
return NumbersACHNullable(
accountId: (accountId != null ? accountId.value : this.accountId),
account: (account != null ? account.value : this.account),
routing: (routing != null ? routing.value : this.routing),
wireRouting:
(wireRouting != null ? wireRouting.value : this.wireRouting),
canTransferIn:
(canTransferIn != null ? canTransferIn.value : this.canTransferIn),
canTransferOut: (canTransferOut != null
? canTransferOut.value
: this.canTransferOut));
}