run method
Runs a Command with the given iterable of arguments
.
Implementation
Future<void> run({
required String executable,
required Command command,
Iterable<String> arguments = const [],
}) {
return runWithInput(command, CommandInput(executable, arguments));
}