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