verifyNotOption method
Implementation
void verifyNotOption(String value) {
if(value.startsWith(optionPrefix)) {
throwUsageError("Options must come after other values in the command");
}
}
void verifyNotOption(String value) {
if(value.startsWith(optionPrefix)) {
throwUsageError("Options must come after other values in the command");
}
}