copyWithWrapped method

VerifyPVCVoiceCaptchaResponseModel copyWithWrapped({
  1. Wrapped<String>? status,
})

Implementation

VerifyPVCVoiceCaptchaResponseModel copyWithWrapped(
    {Wrapped<String>? status}) {
  return VerifyPVCVoiceCaptchaResponseModel(
      status: (status != null ? status.value : this.status));
}