Future<bool> readIsUserLoggedIn() async { SharedPreferences mStorage = await getStorage(); return mStorage.getBool(isLoggedIn) ?? false; }