Future<void> writeBoolean(String key, bool value) async { SharedPreferences mStorage = await getStorage(); mStorage.setBool(key, value); }