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