static Future<int> setInt(String key, int value) async { _cache[key] = value; prefs!.setInt(key, value); return getInt(key); }