static Future fetchClient()

in lib/recaptcha.dart [22:28]


  static Future<RecaptchaClient> fetchClient(String siteKey) async {
    return RecaptchaEnterprisePlatform.instance
        .fetchClient(siteKey)
        .then((_) {
      return RecaptchaClient();
    });
  }