copyWithWrapped method
Implementation
WatchlistScreeningEntityReviewCreateRequest copyWithWrapped(
{Wrapped<List<String>>? confirmedHits,
Wrapped<List<String>>? dismissedHits,
Wrapped<String?>? comment,
Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? entityWatchlistScreeningId}) {
return WatchlistScreeningEntityReviewCreateRequest(
confirmedHits:
(confirmedHits != null ? confirmedHits.value : this.confirmedHits),
dismissedHits:
(dismissedHits != null ? dismissedHits.value : this.dismissedHits),
comment: (comment != null ? comment.value : this.comment),
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
entityWatchlistScreeningId: (entityWatchlistScreeningId != null
? entityWatchlistScreeningId.value
: this.entityWatchlistScreeningId));
}