copyWithWrapped method

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