runExecutableArgumentsSync method

  1. @override
ProcessResult runExecutableArgumentsSync(
  1. String executable,
  2. List<String> arguments
)

Run a single executable with arguments, resolving the executable if needed.

Returns a process result (or throw if specified in the shell).

Compared to the async version, it is not possible to kill the spawn process nor to feed any input.

Implementation

@override
ProcessResult runExecutableArgumentsSync(
  String executable,
  List<String> arguments,
) {
  throw UnimplementedError(
    'runExecutableArgumentsSync($executable, $arguments)',
  );
}