put double. 存储sp中key的double值
static Future<bool>? putDouble(String key, double value) { if (_prefs == null) { return null; } return _prefs?.setDouble(key, value); }