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