Returns a Bool if exists in SharedPref
bool getBoolAsync(String key, {bool defaultValue = false}) { return sharedPreferences.getBool(key) ?? defaultValue; }