Future<void> saveInt(String key, int value) async { final prefs = await _getPrefs(); prefs.setInt(key, value); }