Waffle constructor

const Waffle({
  1. Key? key,
  2. required List<Widget> columns,
  3. Widget? footer,
  4. Widget? header,
  5. void onTap(
    1. BuildContext
    )?,
  6. void onLongPress(
    1. BuildContext
    )?,
})

Implementation

const Waffle({
  Key? key,
  required this.columns,
  this.footer,
  this.header,
  this.onTap,
  this.onLongPress,
}) : super(key: key);