delegateFor method

RecaptchaVerifierFactoryPlatform delegateFor({
  1. String? container,
  2. RecaptchaVerifierSize size = RecaptchaVerifierSize.normal,
  3. RecaptchaVerifierTheme theme = RecaptchaVerifierTheme.light,
  4. RecaptchaVerifierOnSuccess? onSuccess,
  5. RecaptchaVerifierOnError? onError,
  6. RecaptchaVerifierOnExpired? onExpired,
})

Returns a RecaptchaVerifierFactoryPlatform delegate instance.

Underlying implementations can use this method to create the underlying implementation of a Recaptcha Verifier.

Implementation

RecaptchaVerifierFactoryPlatform delegateFor({
  String? container,
  RecaptchaVerifierSize size = RecaptchaVerifierSize.normal,
  RecaptchaVerifierTheme theme = RecaptchaVerifierTheme.light,
  RecaptchaVerifierOnSuccess? onSuccess,
  RecaptchaVerifierOnError? onError,
  RecaptchaVerifierOnExpired? onExpired,
}) {
  throw UnimplementedError('delegateFor() is not implemented');
}