copyWithWrapped method
Implementation
PaystubOverrideEmployeeAddress copyWithWrapped(
{Wrapped<String?>? city,
Wrapped<String?>? region,
Wrapped<String?>? street,
Wrapped<String?>? postalCode,
Wrapped<String?>? country}) {
return PaystubOverrideEmployeeAddress(
city: (city != null ? city.value : this.city),
region: (region != null ? region.value : this.region),
street: (street != null ? street.value : this.street),
postalCode: (postalCode != null ? postalCode.value : this.postalCode),
country: (country != null ? country.value : this.country));
}