copyWithWrapped method

Numbers copyWithWrapped({
  1. Wrapped<String?>? account,
  2. Wrapped<String?>? achRouting,
  3. Wrapped<String?>? achWireRouting,
  4. Wrapped<String?>? eftInstitution,
  5. Wrapped<String?>? eftBranch,
  6. Wrapped<String?>? internationalBic,
  7. Wrapped<String?>? internationalIban,
  8. Wrapped<String?>? bacsSortCode,
})

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));
}