CommandPaletteItem constructor

const CommandPaletteItem({
  1. required String label,
  2. String? description,
  3. String? shortcut,
  4. String? group,
  5. CmdCallback? onSelect,
  6. bool enabled = true,
})

Implementation

const CommandPaletteItem({
  required this.label,
  this.description,
  this.shortcut,
  this.group,
  this.onSelect,
  this.enabled = true,
});