refactored cooking steps

This commit is contained in:
SomnusVeritas
2023-10-17 22:25:48 +02:00
parent 31a5933919
commit 7a8e6a3c65
4 changed files with 14 additions and 15 deletions

View File

@@ -10,4 +10,10 @@ class Ingredient {
required this.possibleUnits,
this.preferredBrands = const [],
});
@override
bool operator ==(other) {
Ingredient i = other as Ingredient;
return title == i.title;
}
}