diff --git a/lib/entities/PizzaRecipe/Ingredient.dart b/lib/entities/PizzaRecipe/Ingredient.dart index 1708d88..1d2bceb 100644 --- a/lib/entities/PizzaRecipe/Ingredient.dart +++ b/lib/entities/PizzaRecipe/Ingredient.dart @@ -15,6 +15,9 @@ class Ingredient extends HiveObject { @HiveField(2) double value; + + @HiveField(3) + bool bought = false; Ingredient(this.name, this.unit, this.value);