delegateFor method

RecaptchaVerifierFactoryPlatform delegateFor(
  1. {required FirebaseAuthPlatform auth,
  2. String? container,
  3. RecaptchaVerifierSize size = RecaptchaVerifierSize.normal,
  4. RecaptchaVerifierTheme theme = RecaptchaVerifierTheme.light,
  5. RecaptchaVerifierOnSuccess? onSuccess,
  6. RecaptchaVerifierOnError? onError,
  7. 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({
  required FirebaseAuthPlatform auth,
  String? container,
  RecaptchaVerifierSize size = RecaptchaVerifierSize.normal,
  RecaptchaVerifierTheme theme = RecaptchaVerifierTheme.light,
  RecaptchaVerifierOnSuccess? onSuccess,
  RecaptchaVerifierOnError? onError,
  RecaptchaVerifierOnExpired? onExpired,
}) {
  throw UnimplementedError('delegateFor() is not implemented');
}