copyWithWrapped method

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

Implementation

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