and method

And and(
  1. Expression exp
)
override

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;
}