static Future<List<String>?> setStringList(String key, List<String> value) async { _cache[key] = value; prefs!.setStringList(key, value); return getStringList(key); }