SliderCaptcha constructor

const SliderCaptcha({
  1. Key? key,
  2. bool hideFooter = false,
  3. String title = 'Slide to Verify',
  4. void onVerified(
    1. String uuid
    )?,
  5. void onFailed(
    1. String uuid
    )?,
})

Implementation

const SliderCaptcha({
  super.key,
  this.hideFooter = false,
  this.hideLogo = true,
  this.title = 'Slide to Verify',
  this.onVerified,
  this.onFailed,
});