RecaptchaWidget constructor

const RecaptchaWidget({
  1. Key? key,
  2. required String siteKey,
  3. required dynamic onVerified(
    1. String
    ),
  4. VoidCallback? onExpired,
  5. VoidCallback? onError,
  6. bool fullScreen = false,
})

Implementation

const RecaptchaWidget({
  super.key,
  required this.siteKey,
  required this.onVerified,
  this.onExpired,
  this.onError,
  this.fullScreen = false,
});