RecaptchaV2Button constructor

const RecaptchaV2Button({
  1. Key? key,
  2. bool? isErrorShowing = false,
  3. required dynamic onVerified(
    1. bool verified
    ),
  4. required String apiKey,
  5. required String apiSecret,
  6. required String pluginURL,
})

Implementation

const RecaptchaV2Button({
  super.key,
  this.isErrorShowing = false,
  required this.onVerified,
  required this.apiKey,
  required this.apiSecret,
  required this.pluginURL,
});