CommandModel constructor

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

Implementation

CommandModel({
  required this.title,
  this.command = "",
  this.external = false,
  this.argsRequired = false,
  this.description,
  this.path,
  this.args,
}) : super();