RecaptchaV2 constructor

RecaptchaV2({
  1. required String apiKey,
  2. required String apiSecret,
  3. required RecaptchaV2Controller controller,
  4. required String pluginURL,
  5. ValueChanged<bool>? onVerifiedSuccessfully,
  6. ValueChanged<String>? onVerifiedError,
  7. EdgeInsetsGeometry? padding,
})

Implementation

RecaptchaV2({
  required this.apiKey,
  required this.apiSecret,
  required this.controller,
  required this.pluginURL,
  this.onVerifiedSuccessfully,
  this.onVerifiedError,
  this.padding,
});