NiceShortcutInfo constructor

const NiceShortcutInfo({
  1. required String label,
  2. required ShortcutActivator activator,
  3. String? description,
  4. String? category,
  5. bool enabled = true,
})

Implementation

const NiceShortcutInfo({
  required this.label,
  required this.activator,
  this.description,
  this.category,
  this.enabled = true,
});