DoubleListTileButtons constructor

const DoubleListTileButtons({
  1. Key? key,
  2. required Widget firstButton,
  3. required Widget secondButton,
  4. EdgeInsetsGeometry padding = EdgeInsets.zero,
  5. bool expanded = true,
  6. double? space,
})

Creates a DoubleListTileButtons widget.

Implementation

const DoubleListTileButtons({
  super.key,
  required this.firstButton,
  required this.secondButton,
  this.padding = EdgeInsets.zero,
  this.expanded = true,
  this.space,
});