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