// Add the value notifier class with constructor
class FavoriteNotifier extends ValueNotifier<List<String>> {
  FavoriteNotifier(List<String> value) : super(value);
}