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