copyWith method

WatchlistScreeningEntityProgramGetRequest copyWith({
  1. String? entityWatchlistProgramId,
  2. String? secret,
  3. String? clientId,
})

Implementation

WatchlistScreeningEntityProgramGetRequest copyWith(
    {String? entityWatchlistProgramId, String? secret, String? clientId}) {
  return WatchlistScreeningEntityProgramGetRequest(
      entityWatchlistProgramId:
          entityWatchlistProgramId ?? this.entityWatchlistProgramId,
      secret: secret ?? this.secret,
      clientId: clientId ?? this.clientId);
}