CommandItem constructor

const CommandItem({
  1. required String label,
  2. Widget? icon,
  3. String? shortcut,
  4. void onSelect()?,
  5. bool disabled = false,
  6. List<String>? keywords,
  7. String? href,
  8. String? hrefTarget,
})

Implementation

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