copyWith method
Implementation
PaystubOverrideEmployeeAddress copyWith(
{String? city,
String? region,
String? street,
String? postalCode,
String? country}) {
return PaystubOverrideEmployeeAddress(
city: city ?? this.city,
region: region ?? this.region,
street: street ?? this.street,
postalCode: postalCode ?? this.postalCode,
country: country ?? this.country);
}