SchemaNutritionInformation constructor

SchemaNutritionInformation({
  1. String? additionalType,
  2. String? alternateName,
  3. dynamic description,
  4. String? disambiguatingDescription,
  5. dynamic identifier,
  6. dynamic image,
  7. dynamic mainEntityOfPage,
  8. String? name,
  9. dynamic owner,
  10. SchemaAction? potentialAction,
  11. String? sameAs,
  12. dynamic subjectOf,
  13. String? url,
  14. SchemaEnergy? calories,
  15. SchemaMass? carbohydrateContent,
  16. SchemaMass? cholesterolContent,
  17. SchemaMass? fatContent,
  18. SchemaMass? fiberContent,
  19. SchemaMass? proteinContent,
  20. SchemaMass? saturatedFatContent,
  21. String? servingSize,
  22. SchemaMass? sodiumContent,
  23. SchemaMass? sugarContent,
  24. SchemaMass? transFatContent,
  25. SchemaMass? unsaturatedFatContent,
})

Create a new instance of SchemaNutritionInformation

Implementation

SchemaNutritionInformation({
  super.additionalType,
  super.alternateName,
  super.description,
  super.disambiguatingDescription,
  super.identifier,
  super.image,
  super.mainEntityOfPage,
  super.name,
  super.owner,
  super.potentialAction,
  super.sameAs,
  super.subjectOf,
  super.url,
  this.calories,
  this.carbohydrateContent,
  this.cholesterolContent,
  this.fatContent,
  this.fiberContent,
  this.proteinContent,
  this.saturatedFatContent,
  this.servingSize,
  this.sodiumContent,
  this.sugarContent,
  this.transFatContent,
  this.unsaturatedFatContent,
});