DoughRecipe constructor

const DoughRecipe({
  1. required Widget child,
  2. Key? key,
  3. DoughRecipeData? data,
})

Creates a DoughRecipe widget.

Implementation

const DoughRecipe({
  required this.child,
  super.key,
  this.data,
});