VscodeCommand constructor

VscodeCommand({
  1. required String id,
  2. required String title,
  3. String? keybinding,
  4. String? category,
  5. required Future handler(
    1. List? args
    ),
})

Implementation

VscodeCommand({
  required this.id,
  required this.title,
  this.keybinding,
  this.category,
  required this.handler,
});