SlideCaptcha constructor
const
SlideCaptcha({
- Key? key,
- required Future<
SlideCaptchaModel> getCaptcha(), - String? title,
- required VoidCallback onSuccess,
- required Future<
bool> checkCaptcha(),
Implementation
const SlideCaptcha({
super.key,
required this.getCaptcha,
this.title,
required this.onSuccess,
required this.checkCaptcha,
});