copyWithWrapped method
EntityScreeningHitAnalysis
copyWithWrapped({
- Wrapped<
MatchSummaryCode?> ? documents, - Wrapped<
MatchSummaryCode?> ? emailAddresses, - Wrapped<
MatchSummaryCode?> ? locations, - Wrapped<
MatchSummaryCode?> ? names, - Wrapped<
MatchSummaryCode?> ? phoneNumbers, - Wrapped<
MatchSummaryCode?> ? urls, - Wrapped<
double> ? searchTermsVersion,
Implementation
EntityScreeningHitAnalysis copyWithWrapped(
{Wrapped<enums.MatchSummaryCode?>? documents,
Wrapped<enums.MatchSummaryCode?>? emailAddresses,
Wrapped<enums.MatchSummaryCode?>? locations,
Wrapped<enums.MatchSummaryCode?>? names,
Wrapped<enums.MatchSummaryCode?>? phoneNumbers,
Wrapped<enums.MatchSummaryCode?>? urls,
Wrapped<double>? searchTermsVersion}) {
return EntityScreeningHitAnalysis(
documents: (documents != null ? documents.value : this.documents),
emailAddresses: (emailAddresses != null
? emailAddresses.value
: this.emailAddresses),
locations: (locations != null ? locations.value : this.locations),
names: (names != null ? names.value : this.names),
phoneNumbers:
(phoneNumbers != null ? phoneNumbers.value : this.phoneNumbers),
urls: (urls != null ? urls.value : this.urls),
searchTermsVersion: (searchTermsVersion != null
? searchTermsVersion.value
: this.searchTermsVersion));
}