ButtonPanelProps constructor

const ButtonPanelProps({
  1. required List<Component> children,
  2. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.end,
  3. double gap = 8,
  4. bool responsive = true,
  5. EdgeInsets? padding,
})

Implementation

const ButtonPanelProps({
  required this.children,
  this.mainAxisAlignment = MainAxisAlignment.end,
  this.gap = 8,
  this.responsive = true,
  this.padding,
});