operator | method

Expression<bool?> operator |(
  1. Expression<bool?> other
)

Returns an expression that is true if this or other are true.

Implementation

Expression<bool?> operator |(Expression<bool?> other) {
  return _BaseInfixOperator(this, 'OR', other, precedence: Precedence.or);
}