toggleFavorite method
Implementation
void toggleFavorite(String path) {
if (!_favorites.remove(path)) _favorites.add(path);
ULocalStorage.set(_favoritesKey, _favorites.join("\n"));
notifyListeners();
}
void toggleFavorite(String path) {
if (!_favorites.remove(path)) _favorites.add(path);
ULocalStorage.set(_favoritesKey, _favorites.join("\n"));
notifyListeners();
}