copyWithWrapped method
Implementation
Employer copyWithWrapped(
{Wrapped<String>? employerId,
Wrapped<String>? name,
Wrapped<AddressDataNullable?>? address,
Wrapped<double>? confidenceScore}) {
return Employer(
employerId: (employerId != null ? employerId.value : this.employerId),
name: (name != null ? name.value : this.name),
address: (address != null ? address.value : this.address),
confidenceScore: (confidenceScore != null
? confidenceScore.value
: this.confidenceScore));
}