copyWithWrapped method

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

Implementation

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