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