pushClause method

Commander pushClause(
  1. CommandClause clause, {
  2. bool newline = PsdkConst.defEnableNewline,
})

Implementation

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