copyWith method

WatchlistScreeningEntityGetRequest copyWith({
  1. String? entityWatchlistScreeningId,
  2. String? secret,
  3. String? clientId,
})

Implementation

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