SlideCaptcha constructor

const SlideCaptcha({
  1. Key? key,
  2. required Future<SlideCaptchaModel> getCaptcha(),
  3. String? title,
  4. required VoidCallback onSuccess,
  5. required Future<bool> checkCaptcha(
    1. SlideCaptchaEndModel
    ),
})

Implementation

const SlideCaptcha({
  super.key,
  required this.getCaptcha,
  this.title,
  required this.onSuccess,
  required this.checkCaptcha,
});