copyWith method

EntityScreeningHitAnalysis copyWith({
  1. MatchSummaryCode? documents,
  2. MatchSummaryCode? emailAddresses,
  3. MatchSummaryCode? locations,
  4. MatchSummaryCode? names,
  5. MatchSummaryCode? phoneNumbers,
  6. MatchSummaryCode? urls,
  7. double? searchTermsVersion,
})

Implementation

EntityScreeningHitAnalysis copyWith(
    {enums.MatchSummaryCode? documents,
    enums.MatchSummaryCode? emailAddresses,
    enums.MatchSummaryCode? locations,
    enums.MatchSummaryCode? names,
    enums.MatchSummaryCode? phoneNumbers,
    enums.MatchSummaryCode? urls,
    double? searchTermsVersion}) {
  return EntityScreeningHitAnalysis(
      documents: documents ?? this.documents,
      emailAddresses: emailAddresses ?? this.emailAddresses,
      locations: locations ?? this.locations,
      names: names ?? this.names,
      phoneNumbers: phoneNumbers ?? this.phoneNumbers,
      urls: urls ?? this.urls,
      searchTermsVersion: searchTermsVersion ?? this.searchTermsVersion);
}