FirebaseRecaptcha constructor

FirebaseRecaptcha({
  1. required Map<String, String> firebaseConfig,
  2. String firebaseVersion = '8.0.0',
  3. bool appVerificationDisabledForTesting = false,
  4. String? languageCode,
  5. Function? onLoad,
  6. Function? onError,
  7. required dynamic onVerify(
    1. String token
    ),
  8. Function? onFullChallenge,
  9. bool invisible = false,
})

Implementation

FirebaseRecaptcha({
  required this.firebaseConfig,
  this.firebaseVersion = '8.0.0',
  this.appVerificationDisabledForTesting = false,
  this.languageCode,
  this.onLoad,
  this.onError,
  required this.onVerify,
  this.onFullChallenge,
  this.invisible = false,
})
{
  options = InAppWebViewGroupOptions(
  crossPlatform: InAppWebViewOptions(javaScriptEnabled: true),
  android: AndroidInAppWebViewOptions(
    useHybridComposition: true,
  ),
);
}