CommandItemConfig constructor

const CommandItemConfig({
  1. required String label,
  2. String? group,
  3. String? shortcut,
  4. String? icon,
  5. required VoidCallback onSelect,
  6. bool disabled = false,
})

Implementation

const CommandItemConfig({
  required this.label,
  this.group,
  this.shortcut,
  this.icon,
  required this.onSelect,
  this.disabled = false,
});