addCommands method

void addCommands(
  1. List<Command<void>> commands
)
inherited

Adds a list of commands to the command runner.

Implementation

void addCommands(final List<Command<T>> commands) {
  for (final command in commands) {
    addCommand(command);
  }
}