CommandItemProps constructor

const CommandItemProps({
  1. required String label,
  2. Component? icon,
  3. String? shortcut,
  4. void onSelect()?,
  5. bool disabled = false,
  6. List<String>? keywords,
})

Implementation

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