static Future<bool?> setBool(String key, bool value) async { _cache[key] = value; prefs!.setBool(key, value); return getBool(key); }