and method
Creates a 'logical and' expression of this expression and the other
Implementation
And and(Expression exp) {
if (exp is And) {
_expressions.addAll(exp._expressions);
} else {
_expressions.add(exp);
}
return this;
}
Creates a 'logical and' expression of this expression and the other
And and(Expression exp) {
if (exp is And) {
_expressions.addAll(exp._expressions);
} else {
_expressions.add(exp);
}
return this;
}