Future<bool> setBool( String key, bool value, ) async { final storage = await SharedPreferences.getInstance(); return await storage.setBool(key, value); }