copyWith method
Implementation
WatchlistScreeningIndividualListRequest copyWith(
{String? secret,
String? clientId,
String? watchlistProgramId,
String? clientUserId,
enums.WatchlistScreeningStatus? status,
String? assignee,
String? cursor}) {
return WatchlistScreeningIndividualListRequest(
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId,
watchlistProgramId: watchlistProgramId ?? this.watchlistProgramId,
clientUserId: clientUserId ?? this.clientUserId,
status: status ?? this.status,
assignee: assignee ?? this.assignee,
cursor: cursor ?? this.cursor);
}