copyWithWrapped method

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

Implementation

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