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