PerformableActions constructor

const PerformableActions({
  1. required List<PerformableAction> actions,
  2. required Widget child,
  3. Widget buttonBuilder(
    1. BuildContext builderContext,
    2. MenuController controller
    ) = defaultButtonBuilder,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. double spacing = 0.0,
  8. VerticalDirection verticalDirection = VerticalDirection.down,
  9. Key? key,
})

Create an instance.

Implementation

const PerformableActions({
  required this.actions,
  required this.child,
  this.buttonBuilder = defaultButtonBuilder,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.mainAxisSize = MainAxisSize.max,
  this.spacing = 0.0,
  this.verticalDirection = VerticalDirection.down,
  super.key,
});