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