operator | method

Expr operator |(
  1. Object other
)

Boolean OR operator.

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

Implementation

Expr operator |(Object other) => or(this, $(other));