copyWith method
Employer
copyWith({
- String? employerId,
- String? name,
- AddressDataNullable? address,
- double? confidenceScore,
Implementation
Employer copyWith(
{String? employerId,
String? name,
AddressDataNullable? address,
double? confidenceScore}) {
return Employer(
employerId: employerId ?? this.employerId,
name: name ?? this.name,
address: address ?? this.address,
confidenceScore: confidenceScore ?? this.confidenceScore);
}