copyWith method

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

Implementation

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