Dessert constructor

Dessert(
  1. String name,
  2. int calories,
  3. double fat,
  4. int carbs,
  5. double protein,
  6. int sodium,
  7. int calcium,
  8. int iron,
)

Implementation

Dessert(
    this.name,
    this.calories,
    this.fat,
    this.carbs,
    this.protein,
    this.sodium,
    this.calcium,
    this.iron,
    );