Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
未定义参数“过期”我将 firebase 远程配置更新为 0.10.0,我在此行中收到此错误。
await _remoteConfig.fetch(expiration: Duration(hours: 5));
包更新了,试试这个。
await remoteConfig.setConfigSettings(RemoteConfigSettings( fetchTimeout: const Duration(seconds: 10), minimumFetchInterval: Duration.zero, )); await remoteConfig.fetchAndActivate();