dynamic whereOutsideOf(lhs, rhs)

Matcher for matching column values where matched value is less than lhs or greater than rhs when using Query.where.

See Query.where. Example:

  var query = new Query<Employee>()
    ..where.salary = whereOutsideOf(80000, 100000);

Source

dynamic whereOutsideOf(dynamic lhs, dynamic rhs) {
  return new RangeMatcherExpression(lhs, rhs, false);
}