存储布尔值
Future<bool> setBool(String key, bool value) async { final prefs = await _sharedPreferences; return prefs.setBool(key, value); }