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