CommandModelCmd constructor

CommandModelCmd({
  1. required String title,
  2. required String command,
  3. String? description,
  4. String? path,
  5. bool external = false,
  6. bool argsRequired = false,
})

Implementation

CommandModelCmd({
  required super.title,
  required super.command,
  super.description,
  super.path,
  super.external,
  super.argsRequired,
});