Sequence<State, System> constructor

Sequence<State, System>(
  1. String description,
  2. List<Command<State, System>> commands
)

Creates a new sequence command.

Parameters:

  • description: The description of the command.
  • commands: The commands to run in sequence.

Implementation

Sequence(super.description, this.commands);