MenuItemConfig constructor

const MenuItemConfig({
  1. required String label,
  2. String? href,
  3. void onClick()?,
  4. String? icon,
  5. bool destructive = false,
  6. bool disabled = false,
})

Implementation

const MenuItemConfig({
  required this.label,
  this.href,
  this.onClick,
  this.icon,
  this.destructive = false,
  this.disabled = false,
});