copyWithWrapped method

WatchlistScreeningHitLocations copyWithWrapped({
  1. Wrapped<String>? full,
  2. Wrapped<String>? country,
})

Implementation

WatchlistScreeningHitLocations copyWithWrapped(
    {Wrapped<String>? full, Wrapped<String>? country}) {
  return WatchlistScreeningHitLocations(
      full: (full != null ? full.value : this.full),
      country: (country != null ? country.value : this.country));
}