存储双精度浮点数
Future<bool> setDouble(String key, double value) async { final prefs = await _sharedPreferences; return prefs.setDouble(key, value); }