notBetween method

Expression notBetween(
  1. int min,
  2. int max
)
inherited

Creates an Expression checking if the value in the column inclusively is NOT between the min, max values.

Implementation

Expression notBetween(T min, T max) {
  return _NotBetweenExpression(
      this, _encodeValueForQuery(min), _encodeValueForQuery(max));
}