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