copyWith method

PayStubTaxpayerID copyWith({
  1. String? idType,
  2. String? idMask,
})

Implementation

PayStubTaxpayerID copyWith({String? idType, String? idMask}) {
  return PayStubTaxpayerID(
      idType: idType ?? this.idType, idMask: idMask ?? this.idMask);
}