NiceConsoleCommand constructor

const NiceConsoleCommand({
  1. required String key,
  2. required String label,
  3. String? description,
  4. String? shortcut,
  5. IconData? icon,
})

Implementation

const NiceConsoleCommand({
  required this.key,
  required this.label,
  this.description,
  this.shortcut,
  this.icon,
});