getRecaptchaSiteKey method

  1. @protected
  2. @visibleForTesting
Future<String> getRecaptchaSiteKey(
  1. FirebaseAuth auth
)

Implementation

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