copyWith method

WatchlistScreeningEntityHitListRequest copyWith({
  1. String? secret,
  2. String? clientId,
  3. String? entityWatchlistScreeningId,
  4. String? cursor,
})

Implementation

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