CLPopupMenu constructor

const CLPopupMenu({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. required List<CLPopupMenuItem> items,
  5. required Widget builder(
    1. BuildContext context,
    2. VoidCallback open
    ),
  6. CLPopupAlignment alignment = CLPopupAlignment.end,
  7. double minWidth = 0,
  8. double maxWidth = 280,
})

Implementation

const CLPopupMenu({
  super.key,
  this.title,
  this.titleWidget,
  required this.items,
  required this.builder,
  this.alignment = CLPopupAlignment.end,
  this.minWidth = 0,
  this.maxWidth = 280,
});