startProcess method

Future<Process> startProcess(
  1. String executable,
  2. List<String> arguments
)

Implementation

Future<Process> startProcess(
  String executable,
  List<String> arguments,
) {
  stdout.writeln('Starting process: $executable ${arguments.join(' ')}');
  return Process.start(
    executable,
    arguments,
    workingDirectory: this == Directory.current ? null : path,
    mode: ProcessStartMode.inheritStdio,
  );
}