CaptchaWebViewWeb constructor

const CaptchaWebViewWeb({
  1. Key? key,
  2. required String html,
  3. required void onSuccess(
    1. String token
    ),
  4. required void onError(
    1. String token
    ),
  5. VoidCallback? onLoaded,
  6. bool useInAppWebViewOnWeb = false,
  7. required bool enableDebugLogging,
  8. double captchaHeight = 550,
  9. double captchaWidth = 550,
})

Implementation

const CaptchaWebViewWeb({
  super.key,
  required this.html,
  required this.onSuccess,
  required this.onError,
  this.onLoaded,
  this.useInAppWebViewOnWeb = false,
  required this.enableDebugLogging,
  this.captchaHeight = 550,
  this.captchaWidth = 550,
});