copyWithWrapped method

IdentityVerificationRetryRequestStepsObject copyWithWrapped({
  1. Wrapped<bool>? verifySms,
  2. Wrapped<bool>? kycCheck,
  3. Wrapped<bool>? documentaryVerification,
  4. Wrapped<bool>? selfieCheck,
})

Implementation

IdentityVerificationRetryRequestStepsObject copyWithWrapped(
    {Wrapped<bool>? verifySms,
    Wrapped<bool>? kycCheck,
    Wrapped<bool>? documentaryVerification,
    Wrapped<bool>? selfieCheck}) {
  return IdentityVerificationRetryRequestStepsObject(
      verifySms: (verifySms != null ? verifySms.value : this.verifySms),
      kycCheck: (kycCheck != null ? kycCheck.value : this.kycCheck),
      documentaryVerification: (documentaryVerification != null
          ? documentaryVerification.value
          : this.documentaryVerification),
      selfieCheck:
          (selfieCheck != null ? selfieCheck.value : this.selfieCheck));
}