copyWith method
ScreeningHitAnalysis
copyWith({
- MatchSummaryCode? datesOfBirth,
- MatchSummaryCode? documents,
- MatchSummaryCode? locations,
- MatchSummaryCode? names,
- double? searchTermsVersion,
Implementation
ScreeningHitAnalysis copyWith(
{enums.MatchSummaryCode? datesOfBirth,
enums.MatchSummaryCode? documents,
enums.MatchSummaryCode? locations,
enums.MatchSummaryCode? names,
double? searchTermsVersion}) {
return ScreeningHitAnalysis(
datesOfBirth: datesOfBirth ?? this.datesOfBirth,
documents: documents ?? this.documents,
locations: locations ?? this.locations,
names: names ?? this.names,
searchTermsVersion: searchTermsVersion ?? this.searchTermsVersion);
}