ControlButtonsComponentOptions constructor

ControlButtonsComponentOptions(
  1. {required List<ControlButton> buttons,
  2. MainAxisAlignment alignment = MainAxisAlignment.start,
  3. bool vertical = false,
  4. Color? buttonBackgroundColor,
  5. BoxConstraints? buttonsContainerConstraints}
)

Implementation

ControlButtonsComponentOptions({
  required this.buttons,
  this.alignment = MainAxisAlignment.start,
  this.vertical = false,
  this.buttonBackgroundColor,
  this.buttonsContainerConstraints,
});