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