startProcess method
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,
);
}