copyWithWrapped method

Credit1099Payer copyWithWrapped({
  1. Wrapped<CreditPayStubAddress?>? address,
  2. Wrapped<String?>? name,
  3. Wrapped<String?>? tin,
  4. Wrapped<String?>? telephoneNumber,
})

Implementation

Credit1099Payer copyWithWrapped(
    {Wrapped<CreditPayStubAddress?>? address,
    Wrapped<String?>? name,
    Wrapped<String?>? tin,
    Wrapped<String?>? telephoneNumber}) {
  return Credit1099Payer(
      address: (address != null ? address.value : this.address),
      name: (name != null ? name.value : this.name),
      tin: (tin != null ? tin.value : this.tin),
      telephoneNumber: (telephoneNumber != null
          ? telephoneNumber.value
          : this.telephoneNumber));
}