runWithInput method

Future<void> runWithInput(
  1. Command command,
  2. CommandInput input
)

Runs a Command with the given CommandInput.

Implementation

Future<void> runWithInput(Command command, CommandInput input) {
  return runWithContext(command, CommandContext(this, input));
}