copyWithWrapped method

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

Implementation

EntityScreeningHitAnalysis copyWithWrapped(
    {Wrapped<enums.MatchSummaryCode?>? documents,
    Wrapped<enums.MatchSummaryCode?>? emailAddresses,
    Wrapped<enums.MatchSummaryCode?>? locations,
    Wrapped<enums.MatchSummaryCode?>? names,
    Wrapped<enums.MatchSummaryCode?>? phoneNumbers,
    Wrapped<enums.MatchSummaryCode?>? urls,
    Wrapped<double>? searchTermsVersion}) {
  return EntityScreeningHitAnalysis(
      documents: (documents != null ? documents.value : this.documents),
      emailAddresses: (emailAddresses != null
          ? emailAddresses.value
          : this.emailAddresses),
      locations: (locations != null ? locations.value : this.locations),
      names: (names != null ? names.value : this.names),
      phoneNumbers:
          (phoneNumbers != null ? phoneNumbers.value : this.phoneNumbers),
      urls: (urls != null ? urls.value : this.urls),
      searchTermsVersion: (searchTermsVersion != null
          ? searchTermsVersion.value
          : this.searchTermsVersion));
}