operator | method

Expression operator |(
  1. dynamic other
)

Database OR operator.

Implementation

Expression operator |(dynamic other) {
  assert(other is Expression);
  return Expression('($this OR $other)');
}