copyWith method

Implementation

EntityScreeningHitsPhoneNumberItems copyWith(
    {MatchSummary? analysis, EntityScreeningHitPhoneNumbers? data}) {
  return EntityScreeningHitsPhoneNumberItems(
      analysis: analysis ?? this.analysis, data: data ?? this.data);
}