copyWithWrapped method
Implementation
WatchlistScreeningEntityReviewListRequest copyWithWrapped(
{Wrapped<String?>? secret,
Wrapped<String?>? clientId,
Wrapped<String>? entityWatchlistScreeningId,
Wrapped<String?>? cursor}) {
return WatchlistScreeningEntityReviewListRequest(
secret: (secret != null ? secret.value : this.secret),
clientId: (clientId != null ? clientId.value : this.clientId),
entityWatchlistScreeningId: (entityWatchlistScreeningId != null
? entityWatchlistScreeningId.value
: this.entityWatchlistScreeningId),
cursor: (cursor != null ? cursor.value : this.cursor));
}