copyWithWrapped method

Implementation

EntityScreeningHitsPhoneNumberItems copyWithWrapped(
    {Wrapped<MatchSummary?>? analysis,
    Wrapped<EntityScreeningHitPhoneNumbers?>? data}) {
  return EntityScreeningHitsPhoneNumberItems(
      analysis: (analysis != null ? analysis.value : this.analysis),
      data: (data != null ? data.value : this.data));
}