Nutrition constructor

Nutrition({
  1. FloatUnit? addedSugars,
  2. double? addedSugarsDailyPercentage,
  3. FloatUnit? calcium,
  4. double? calciumDailyPercentage,
  5. FloatUnit? cholesterol,
  6. double? cholesterolDailyPercentage,
  7. FloatUnit? dietaryFiber,
  8. double? dietaryFiberDailyPercentage,
  9. FloatUnit? energy,
  10. FloatUnit? energyFromFat,
  11. double? folateDailyPercentage,
  12. FloatUnit? folateFolicAcid,
  13. double? folateMcgDfe,
  14. FloatUnit? iron,
  15. double? ironDailyPercentage,
  16. FloatUnit? monounsaturatedFat,
  17. String? nutritionFactMeasure,
  18. FloatUnit? polyols,
  19. FloatUnit? polyunsaturatedFat,
  20. FloatUnit? potassium,
  21. double? potassiumDailyPercentage,
  22. String? preparedSizeDescription,
  23. FloatUnit? protein,
  24. double? proteinDailyPercentage,
  25. FloatUnit? saturatedFat,
  26. double? saturatedFatDailyPercentage,
  27. String? servingSizeDescription,
  28. FloatUnit? servingSizeMeasure,
  29. String? servingsPerContainer,
  30. FloatUnit? sodium,
  31. double? sodiumDailyPercentage,
  32. FloatUnit? starch,
  33. FloatUnit? totalCarbohydrate,
  34. double? totalCarbohydrateDailyPercentage,
  35. FloatUnit? totalFat,
  36. double? totalFatDailyPercentage,
  37. FloatUnit? totalSugars,
  38. double? totalSugarsDailyPercentage,
  39. FloatUnit? transFat,
  40. double? transFatDailyPercentage,
  41. FloatUnit? vitaminD,
  42. double? vitaminDDailyPercentage,
  43. List<VoluntaryNutritionFact>? voluntaryNutritionFact,
})

Implementation

Nutrition({
  this.addedSugars,
  this.addedSugarsDailyPercentage,
  this.calcium,
  this.calciumDailyPercentage,
  this.cholesterol,
  this.cholesterolDailyPercentage,
  this.dietaryFiber,
  this.dietaryFiberDailyPercentage,
  this.energy,
  this.energyFromFat,
  this.folateDailyPercentage,
  this.folateFolicAcid,
  this.folateMcgDfe,
  this.iron,
  this.ironDailyPercentage,
  this.monounsaturatedFat,
  this.nutritionFactMeasure,
  this.polyols,
  this.polyunsaturatedFat,
  this.potassium,
  this.potassiumDailyPercentage,
  this.preparedSizeDescription,
  this.protein,
  this.proteinDailyPercentage,
  this.saturatedFat,
  this.saturatedFatDailyPercentage,
  this.servingSizeDescription,
  this.servingSizeMeasure,
  this.servingsPerContainer,
  this.sodium,
  this.sodiumDailyPercentage,
  this.starch,
  this.totalCarbohydrate,
  this.totalCarbohydrateDailyPercentage,
  this.totalFat,
  this.totalFatDailyPercentage,
  this.totalSugars,
  this.totalSugarsDailyPercentage,
  this.transFat,
  this.transFatDailyPercentage,
  this.vitaminD,
  this.vitaminDDailyPercentage,
  this.voluntaryNutritionFact,
});