MenuButton constructor

const MenuButton({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. Widget? leading,
  5. IconData? icon,
  6. void onPressed()?,
  7. bool inverted = false,
})

Implementation

const MenuButton({
  super.key,
  this.title,
  this.subtitle,
  this.leading,
  this.icon,
  this.onPressed,
  this.inverted = false,
});