MenuOptionRow constructor

const MenuOptionRow({
  1. Key? key,
  2. required String label,
  3. required bool isSelected,
  4. String? description,
  5. String? shortcut,
})

Implementation

const MenuOptionRow({
  super.key,
  required this.label,
  required this.isSelected,
  this.description,
  this.shortcut,
});