and method

Expr<bool?> and(
  1. Expr<bool?> other
)

Requires both predicates to be true.

Implementation

Expr<bool?> and(Expr<bool?> other) => Expr.internal(
  BinaryNode(expressionNode, 'AND', other.expressionNode),
  Codecs.boolean.nullable(),
);