WaffleTopping constructor

const WaffleTopping({
  1. required Widget title,
  2. Key? key,
  3. double? width,
  4. Widget? content,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const WaffleTopping({
  required this.title,
  Key? key,
  this.width,
  this.content,
  this.margin,
  this.padding,
}) : super(key: key);