CustomMultiActionButton constructor

const CustomMultiActionButton({
  1. Key? key,
  2. required Widget child,
  3. Color? menuBackground,
  4. Color? buttonBackgroundColor,
  5. double? buttonBorderRadius,
  6. required List<MultiActionButtonItemModel> actions,
})

Implementation

const CustomMultiActionButton({
  super.key,
  required this.child,
  this.menuBackground,
  this.buttonBackgroundColor,
  this.buttonBorderRadius,
  required this.actions,
});