copyWithWrapped method

Implementation

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