VxPopupMenu constructor

const VxPopupMenu({
  1. required Widget child,
  2. required MenuBuilderCallback menuBuilder,
  3. required VxClickType clickType,
  4. Key? key,
  5. VxPopupMenuController? controller,
  6. Color arrowColor = const Color(0xFF4C4C4C),
  7. bool showArrow = true,
  8. Color barrierColor = Colors.black12,
  9. double arrowSize = 10.0,
  10. double horizontalMargin = 10.0,
  11. double verticalMargin = 10.0,
})

Implementation

const VxPopupMenu({
  required this.child,
  required this.menuBuilder,
  required this.clickType,
  Key? key,
  this.controller,
  this.arrowColor = const Color(0xFF4C4C4C),
  this.showArrow = true,
  this.barrierColor = Colors.black12,
  this.arrowSize = 10.0,
  this.horizontalMargin = 10.0,
  this.verticalMargin = 10.0,
}) : super(key: key);