static Future<int> getInt(String key) async { SharedPreferences prefs = await SharedPreferences.getInstance(); return prefs.getInt(key) ?? 0; }