static Future<bool> putInt(String key, int value) async { if (_prefs == null) await init(); return await _prefs?.setInt(key, value) ?? false; }