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