addCommand method

void addCommand(
  1. String command,
  2. String value
)

Adds a command to the arguments

Implementation

void addCommand(String command, String value) {
  _arguments.add('--$command $value');
}