run method
Implementation
Future<ProcessResult> run(
String executable,
List<String> arguments, {
String? workingDirectory,
}) {
return Process.run(
executable,
arguments,
workingDirectory: workingDirectory,
runInShell: Platform.isWindows,
);
}