toggleFavorite method

void toggleFavorite(
  1. String path
)

Implementation

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