copyWithWrapped method

WatchlistScreeningIndividualReviewCreateRequest copyWithWrapped({
  1. Wrapped<List<String>>? confirmedHits,
  2. Wrapped<List<String>>? dismissedHits,
  3. Wrapped<String?>? comment,
  4. Wrapped<String?>? clientId,
  5. Wrapped<String?>? secret,
  6. Wrapped<String>? watchlistScreeningId,
})

Implementation

WatchlistScreeningIndividualReviewCreateRequest copyWithWrapped(
    {Wrapped<List<String>>? confirmedHits,
    Wrapped<List<String>>? dismissedHits,
    Wrapped<String?>? comment,
    Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? watchlistScreeningId}) {
  return WatchlistScreeningIndividualReviewCreateRequest(
      confirmedHits:
          (confirmedHits != null ? confirmedHits.value : this.confirmedHits),
      dismissedHits:
          (dismissedHits != null ? dismissedHits.value : this.dismissedHits),
      comment: (comment != null ? comment.value : this.comment),
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      watchlistScreeningId: (watchlistScreeningId != null
          ? watchlistScreeningId.value
          : this.watchlistScreeningId));
}