copyWithWrapped method
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));
}