MenuItem constructor

const MenuItem({
  1. required String label,
  2. VoidCallback? onSelected,
  3. String? shortcut,
  4. bool enabled = true,
})

Implementation

const MenuItem({
  required this.label,
  this.onSelected,
  this.shortcut,
  this.enabled = true,
});