runCommand method
Run a single command.
Returns a process result (or throw if specified in the shell).
onProcess is called for each started process.
Implementation
@override
Future<ShellProcessResult> runCommand(
ShellCommand command, {
ShellCommandRunOptions? options,
}) {
return _runCommand(command, options: options);
}