Command constructor

Command({
  1. List<String>? args,
  2. String? name,
  3. String? scriptPath,
})

Implementation

Command({
  this.args,
  this.name,
  this.scriptPath,
});