copyWithWrapped method

WatchlistScreeningEntityProgramGetRequest copyWithWrapped({
  1. Wrapped<String>? entityWatchlistProgramId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String?>? clientId,
})

Implementation

WatchlistScreeningEntityProgramGetRequest copyWithWrapped(
    {Wrapped<String>? entityWatchlistProgramId,
    Wrapped<String?>? secret,
    Wrapped<String?>? clientId}) {
  return WatchlistScreeningEntityProgramGetRequest(
      entityWatchlistProgramId: (entityWatchlistProgramId != null
          ? entityWatchlistProgramId.value
          : this.entityWatchlistProgramId),
      secret: (secret != null ? secret.value : this.secret),
      clientId: (clientId != null ? clientId.value : this.clientId));
}