IngredientListWidget constructor

const IngredientListWidget({
  1. required List<Ingredient> ingredients,
  2. Key? key,
  3. TextStyle? sectionTitleStyle,
  4. TextStyle? contentStyle,
})

Creates an instance of IngredientListWidget.

Implementation

const IngredientListWidget({
  required this.ingredients, super.key,
  this.sectionTitleStyle,
  this.contentStyle,
});