isRecaptchaEnterpriseEnabledForAction method
- @protected
- @visibleForTesting
- FirebaseAuth auth,
- String action
Implementation
@protected
@visibleForTesting
Future<bool> isRecaptchaEnterpriseEnabledForAction(
FirebaseAuth auth,
String action,
) async {
if (auth is FirebaseAuthProtectedMethods) {
return auth.isRecaptchaEnterpriseEnabledForAction(action);
}
throw UnimplementedError();
}