copyWith method
EntityScreeningHitAnalysis
copyWith({
- MatchSummaryCode? documents,
- MatchSummaryCode? emailAddresses,
- MatchSummaryCode? locations,
- MatchSummaryCode? names,
- MatchSummaryCode? phoneNumbers,
- MatchSummaryCode? urls,
- double? searchTermsVersion,
Implementation
EntityScreeningHitAnalysis copyWith(
{enums.MatchSummaryCode? documents,
enums.MatchSummaryCode? emailAddresses,
enums.MatchSummaryCode? locations,
enums.MatchSummaryCode? names,
enums.MatchSummaryCode? phoneNumbers,
enums.MatchSummaryCode? urls,
double? searchTermsVersion}) {
return EntityScreeningHitAnalysis(
documents: documents ?? this.documents,
emailAddresses: emailAddresses ?? this.emailAddresses,
locations: locations ?? this.locations,
names: names ?? this.names,
phoneNumbers: phoneNumbers ?? this.phoneNumbers,
urls: urls ?? this.urls,
searchTermsVersion: searchTermsVersion ?? this.searchTermsVersion);
}