copyWithWrapped method
Implementation
IncomeVerificationCreateRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? webhook,
Wrapped<String?>? precheckId,
Wrapped<IncomeVerificationCreateRequestOptions?>? options}) {
return IncomeVerificationCreateRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
webhook: (webhook != null ? webhook.value : this.webhook),
precheckId: (precheckId != null ? precheckId.value : this.precheckId),
options: (options != null ? options.value : this.options));
}