copyWith method

WatchlistScreeningIndividualGetRequest copyWith({
  1. String? watchlistScreeningId,
  2. String? secret,
  3. String? clientId,
})

Implementation

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