copyWith method
Implementation
WatchlistScreeningIndividualReviewListRequest copyWith(
{String? secret,
String? clientId,
String? watchlistScreeningId,
String? cursor}) {
return WatchlistScreeningIndividualReviewListRequest(
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId,
watchlistScreeningId: watchlistScreeningId ?? this.watchlistScreeningId,
cursor: cursor ?? this.cursor);
}