pushClause method
Implementation
Commander pushClause(
CommandClause clause, {
bool newline = PsdkConst.defEnableNewline,
}) {
_clauses.add(clause);
if (newline) {
this.newline();
}
return this;
}
Commander pushClause(
CommandClause clause, {
bool newline = PsdkConst.defEnableNewline,
}) {
_clauses.add(clause);
if (newline) {
this.newline();
}
return this;
}