Ingredient constructor
Ingredient({ - int? rank,
- String? id,
- String? text,
- bool? isInTaxonomy,
- double? percent,
- double? percentEstimate,
- IngredientSpecialPropertyStatus? vegan,
- IngredientSpecialPropertyStatus? vegetarian,
- IngredientSpecialPropertyStatus? fromPalmOil,
- List<Ingredient>? ingredients,
- bool? bold = false,
})
Implementation
Ingredient(
{this.rank,
this.id,
this.text,
this.isInTaxonomy,
this.percent,
this.percentEstimate,
this.vegan,
this.vegetarian,
this.fromPalmOil,
this.ingredients,
this.bold = false});