copyWithWrapped method
Implementation
TaxpayerID copyWithWrapped(
    {Wrapped<String?>? idType,
    Wrapped<String?>? idMask,
    Wrapped<String?>? last4Digits}) {
  return TaxpayerID(
      idType: (idType != null ? idType.value : this.idType),
      idMask: (idMask != null ? idMask.value : this.idMask),
      last4Digits:
          (last4Digits != null ? last4Digits.value : this.last4Digits));
}