添加/获取本地缓存
static Future<bool> setBool(String key, bool value) async { SharedPreferences prefs = await SharedPreferences.getInstance(); return prefs.setBool(key, value); }