copyWithWrapped method
Implementation
Numbers copyWithWrapped(
{Wrapped<String?>? account,
Wrapped<String?>? achRouting,
Wrapped<String?>? achWireRouting,
Wrapped<String?>? eftInstitution,
Wrapped<String?>? eftBranch,
Wrapped<String?>? internationalBic,
Wrapped<String?>? internationalIban,
Wrapped<String?>? bacsSortCode}) {
return Numbers(
account: (account != null ? account.value : this.account),
achRouting: (achRouting != null ? achRouting.value : this.achRouting),
achWireRouting: (achWireRouting != null
? achWireRouting.value
: this.achWireRouting),
eftInstitution: (eftInstitution != null
? eftInstitution.value
: this.eftInstitution),
eftBranch: (eftBranch != null ? eftBranch.value : this.eftBranch),
internationalBic: (internationalBic != null
? internationalBic.value
: this.internationalBic),
internationalIban: (internationalIban != null
? internationalIban.value
: this.internationalIban),
bacsSortCode:
(bacsSortCode != null ? bacsSortCode.value : this.bacsSortCode));
}