NiceCommand constructor

const NiceCommand({
  1. required String id,
  2. required String label,
  3. String? description,
  4. IconData? icon,
  5. String? shortcut,
  6. List<String>? keywords,
  7. VoidCallback? action,
  8. String? category,
})

Implementation

const NiceCommand({
  required this.id,
  required this.label,
  this.description,
  this.icon,
  this.shortcut,
  this.keywords,
  this.action,
  this.category,
});