run method

Future<void> run({
  1. required String executable,
  2. required Command command,
  3. Iterable<String> arguments = const [],
})

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));
}