Executable constructor

Executable(
  1. String executable, {
  2. List<String> args = const [],
  3. String? cwd,
})

Implementation

Executable(
  this.executable, {
  this.args = const [],
  this.cwd,
});