copyWithWrapped method

IncomeVerificationCreateRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? webhook,
  4. Wrapped<String?>? precheckId,
  5. Wrapped<IncomeVerificationCreateRequestOptions?>? options,
})

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