removed double semicolon
This commit is contained in:
parent
c9657082a1
commit
f417445259
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue