condition method
Adds a where condition to the where clause.
Implementation
void condition(
Operand leftOperand,
ClauseOperator clauseOperator,
Operand rightOperand,
) {
_whereClause.add(WhereCondition(leftOperand, clauseOperator, rightOperand));
}