CommandModelWithPath constructor

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

Implementation

CommandModelWithPath({
  required super.title,
  required super.command,
  super.argsRequired = false,
  super.description,
  required super.path,
  super.args,
  super.external,
}) {
  super.pathRequired = true;
}