copyWithWrapped method

NumbersACH copyWithWrapped({
  1. Wrapped<String>? accountId,
  2. Wrapped<String>? account,
  3. Wrapped<String>? routing,
  4. Wrapped<String?>? wireRouting,
  5. Wrapped<bool?>? canTransferIn,
  6. Wrapped<bool?>? canTransferOut,
})

Implementation

NumbersACH copyWithWrapped(
    {Wrapped<String>? accountId,
    Wrapped<String>? account,
    Wrapped<String>? routing,
    Wrapped<String?>? wireRouting,
    Wrapped<bool?>? canTransferIn,
    Wrapped<bool?>? canTransferOut}) {
  return NumbersACH(
      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));
}