movePrevious method

void movePrevious(
  1. String argument
)

Appends the given argument to the command input.

Implementation

void movePrevious(String argument) {
  _internalArguments.insert(0, argument);
}