copyWithWrapped method

PayStubTaxpayerID copyWithWrapped({
  1. Wrapped<String?>? idType,
  2. Wrapped<String?>? idMask,
})

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