NiceCommandPalette constructor

const NiceCommandPalette({
  1. Key? key,
  2. required List<NiceCommand> commands,
  3. String? placeholder,
  4. ValueChanged<NiceCommand>? onCommandSelected,
  5. VoidCallback? onClose,
})

Implementation

const NiceCommandPalette({
  super.key,
  required this.commands,
  this.placeholder,
  this.onCommandSelected,
  this.onClose,
});