pizzaplanner/lib/entities/PizzaRecipe/Ingredient.dart

7 lines
No EOL
133 B
Dart

class Ingredient {
final String name;
final String unit;
final double value;
Ingredient(this.name, this.unit, this.value);
}