copyWith method

ScreeningHitAnalysis copyWith({
  1. MatchSummaryCode? datesOfBirth,
  2. MatchSummaryCode? documents,
  3. MatchSummaryCode? locations,
  4. MatchSummaryCode? names,
  5. 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);
}