Flutter应用中的远程配置在获取时引发异常

Flutter应用中的远程配置在获取时引发异常,第1张

Flutter应用中的远程配置在获取时引发异常

用Try Catch包装您的fetch()和ActivateFetched()API调用

try {    // Using default duration to force fetching from remote server.    await remoteConfig.fetch(expiration: const Duration(seconds: 0));    await remoteConfig.activateFetched();  } on FetchThrottledException catch (exception) {    // Fetch throttled.    print(exception);  } catch (exception) {    print(        'Unable to fetch remote config. Cached or default values will be '        'used');  }

在此处查看官方示例:https
:
//github.com/flutter/plugins/blob/master/packages/firebase_remote_config/example/lib/main.dart



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4916343.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存