Expression.and constructor

Expression.and(
  1. Expression left,
  2. Expression right
)

Creates an expression that is true when left and right are true.

Implementation

factory Expression.and(Expression left, Expression right) {
  return And(left, right);
}