CaptchaWebViewWeb constructor

const CaptchaWebViewWeb({
  1. Key? key,
  2. required String html,
  3. required void onSuccess(
    1. String token
    ),
  4. required void onError(
    1. String error
    ),
  5. VoidCallback? onLoaded,
  6. required bool enableDebugLogging,
})

Implementation

const CaptchaWebViewWeb({
  super.key,
  required this.html,
  required this.onSuccess,
  required this.onError,
  this.onLoaded,
  required this.enableDebugLogging,
});