or method

FilterExpr or(
  1. FilterExpr other
)

Implementation

FilterExpr or(FilterExpr other) {
  if (this is FilterOr) {
    var or = this as FilterOr;
    return FilterOr([...or.filters, other]);
  }
  return FilterOr([this, other]);
}