static Future<bool> readBool(String key, [bool defaultValue = false]) async { final prefs = await SharedPreferences.getInstance(); return prefs.getBool(key) ?? defaultValue; }