copyWithWrapped method

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

Implementation

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