Future<bool> getBoolValues(String key) async { var prefs = await SharedPreferences.getInstance(); var boolValue = prefs.getBool(key) ?? false; return boolValue; }