CommandPaletteConfig constructor

CommandPaletteConfig({
  1. required List<CommandItemConfig> items,
  2. String placeholder = 'Type a command or search...',
  3. VoidCallback? onClose,
})

Implementation

CommandPaletteConfig({
  required this.items,
  this.placeholder = 'Type a command or search...',
  this.onClose,
});