copyWithWrapped method
Implementation
WatchlistScreeningIndividualReviewCreateRequest copyWithWrapped(
{Wrapped<List<String>>? confirmedHits,
Wrapped<List<String>>? dismissedHits,
Wrapped<String?>? comment,
Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? watchlistScreeningId}) {
return WatchlistScreeningIndividualReviewCreateRequest(
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),
watchlistScreeningId: (watchlistScreeningId != null
? watchlistScreeningId.value
: this.watchlistScreeningId));
}