copyWithWrapped method

Implementation

PaystubOverrideEmployee copyWithWrapped(
    {Wrapped<String?>? name,
    Wrapped<PaystubOverrideEmployeeAddress?>? address}) {
  return PaystubOverrideEmployee(
      name: (name != null ? name.value : this.name),
      address: (address != null ? address.value : this.address));
}