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