Future<bool> isSharedPref(String key) async { final prefs = await sharedPreferences; return prefs.getBool(key) ?? false; }