copyWithWrapped method

IdentityVerificationRetryRequest copyWithWrapped({
  1. Wrapped<String>? clientUserId,
  2. Wrapped<String>? templateId,
  3. Wrapped<Strategy>? strategy,
  4. Wrapped<IdentityVerificationRetryRequestStepsObject?>? steps,
  5. Wrapped<String?>? clientId,
  6. Wrapped<String?>? secret,
})

Implementation

IdentityVerificationRetryRequest copyWithWrapped(
    {Wrapped<String>? clientUserId,
    Wrapped<String>? templateId,
    Wrapped<enums.Strategy>? strategy,
    Wrapped<IdentityVerificationRetryRequestStepsObject?>? steps,
    Wrapped<String?>? clientId,
    Wrapped<String?>? secret}) {
  return IdentityVerificationRetryRequest(
      clientUserId:
          (clientUserId != null ? clientUserId.value : this.clientUserId),
      templateId: (templateId != null ? templateId.value : this.templateId),
      strategy: (strategy != null ? strategy.value : this.strategy),
      steps: (steps != null ? steps.value : this.steps),
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret));
}