copyWithWrapped method

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

Implementation

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