operator & method

Expr operator &(
  1. Object other
)

Boolean AND operator.

Unfortunately Dart does not support overloading the logical && operator so be careful about precedence.

Implementation

Expr operator &(Object other) => and(this, $(other));