copyWithWrapped method
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));
}