Future<bool> getBool(String key, {bool defValue = false}) async{ SharedPreferences pref = _pref!; bool value = pref.getBool(key) ?? defValue; return value; }