TriShieldCaptcha constructor

const TriShieldCaptcha({
  1. Key? key,
  2. required void onResult(
    1. CaptchaResult result
    ),
  3. required String apiKey,
  4. required String webUrl,
  5. bool includePadding = true,
})

Implementation

const TriShieldCaptcha({
  super.key,
  required this.onResult,
  required this.apiKey,
  required this.webUrl,
  this.includePadding = true,
});