execSync method

ProcessResult execSync(
  1. List<String> arguments, {
  2. String? workingDirectory,
  3. Map<String, String>? environment,
  4. bool runInShell = false,
})

Implementation

ProcessResult execSync(
  List<String> arguments, {
  String? workingDirectory,
  Map<String, String>? environment,
  bool runInShell = false,
}) {
  return ShellExecutor.global.execSync(
    executable,
    arguments,
    workingDirectory: workingDirectory,
    environment: environment,
    runInShell: runInShell,
  );
}