copyWithWrapped method

AuthGetNumbers copyWithWrapped({
  1. Wrapped<List<NumbersACH>>? ach,
  2. Wrapped<List<NumbersEFT>>? eft,
  3. Wrapped<List<NumbersInternational>>? international,
  4. Wrapped<List<NumbersBACS>>? bacs,
})

Implementation

AuthGetNumbers copyWithWrapped(
    {Wrapped<List<NumbersACH>>? ach,
    Wrapped<List<NumbersEFT>>? eft,
    Wrapped<List<NumbersInternational>>? international,
    Wrapped<List<NumbersBACS>>? bacs}) {
  return AuthGetNumbers(
      ach: (ach != null ? ach.value : this.ach),
      eft: (eft != null ? eft.value : this.eft),
      international:
          (international != null ? international.value : this.international),
      bacs: (bacs != null ? bacs.value : this.bacs));
}