MenuDropdownButton constructor

const MenuDropdownButton({
  1. Key? key,
  2. Widget? icon,
  3. String? label,
  4. TextStyle? labelTextStyle,
  5. required String tooltip,
  6. required List<MenuItem> items,
  7. MenuDropdownConfig config = const MenuDropdownConfig(),
  8. Widget? header,
  9. Widget? footer,
  10. Color? tooltipTextColor,
  11. Color? tooltipBackgroundColor,
  12. Color? buttonColor,
})

Implementation

const MenuDropdownButton({
  super.key,
  this.icon,
  this.label,
  this.labelTextStyle,
  required this.tooltip,
  required this.items,
  this.config = const MenuDropdownConfig(),
  this.header,
  this.footer,
  this.tooltipTextColor,
  this.tooltipBackgroundColor,
  this.buttonColor,
});