CommandLineAgent constructor

CommandLineAgent(
  1. Directory workingDirectory, {
  2. bool create = true,
})

Implementation

CommandLineAgent(this.workingDirectory, {bool create = true}) {
  if (create) {
    workingDirectory.createSync(recursive: true);
  }
}