copyWithWrapped method
Implementation
WatchlistScreeningIndividualHitListResponse copyWithWrapped(
{Wrapped<List<WatchlistScreeningHit>>? watchlistScreeningHits,
Wrapped<String?>? nextCursor,
Wrapped<String>? requestId}) {
return WatchlistScreeningIndividualHitListResponse(
watchlistScreeningHits: (watchlistScreeningHits != null
? watchlistScreeningHits.value
: this.watchlistScreeningHits),
nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
requestId: (requestId != null ? requestId.value : this.requestId));
}