copyWith method

WatchlistScreeningHitLocations copyWith({
  1. String? full,
  2. String? country,
})

Implementation

WatchlistScreeningHitLocations copyWith({String? full, String? country}) {
  return WatchlistScreeningHitLocations(
      full: full ?? this.full, country: country ?? this.country);
}