added 'bought' bool to ingredient

This commit is contained in:
broodjeaap89 2021-08-29 15:37:21 +02:00
parent 5a666396fd
commit f826869ce5

View file

@ -15,6 +15,9 @@ class Ingredient extends HiveObject {
@HiveField(2)
double value;
@HiveField(3)
bool bought = false;
Ingredient(this.name, this.unit, this.value);