start method
Starts a process in the background.
Takes an executable and an argument list. Does NOT run in a shell.
Implementation
Future<Process> start(
String executable,
List<String> arguments, {
String? workingDirectory,
Map<String, String>? environment,
bool includeParentEnvironment = true,
ProcessStartMode mode = ProcessStartMode.normal,
}) {
return Process.start(
executable,
arguments,
workingDirectory: workingDirectory,
environment: environment,
includeParentEnvironment: includeParentEnvironment,
runInShell: false,
mode: mode,
);
}