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