NutritionHealthValue constructor

NutritionHealthValue({
  1. String? mealType,
  2. double? protein,
  3. double? calories,
  4. double? fat,
  5. String? name,
  6. double? carbs,
  7. double? caffeine,
})

Implementation

NutritionHealthValue({
  this.mealType,
  this.protein,
  this.calories,
  this.fat,
  this.name,
  this.carbs,
  this.caffeine,
});