存储字符串
Future<bool> setString(String key, String value) async { final prefs = await _sharedPreferences; return prefs.setString(key, value); }