removed double semicolon

This commit is contained in:
broodjeaap89 2021-07-26 21:13:22 +02:00
parent c9657082a1
commit f417445259

View file

@ -57,7 +57,7 @@ class PizzaRecipe extends HiveObject {
String name = recipe["name"];
String description = recipe["description"];
YamlList ingredients = recipe["ingredients"];;
YamlList ingredients = recipe["ingredients"];
List<Ingredient> newIngredients = ingredients.map((ingredient) => Ingredient(ingredient["name"], ingredient["unit"], ingredient["value"])).toList();