isBetweenValues method
Returns an expression evaluating to true if this expression is between
lower and higher (both inclusive).
If not is set, the expression will be negated.
Implementation
Expression<bool?> isBetweenValues(DT lower, DT higher, {bool not = false}) {
return _BetweenExpression(
target: this,
lower: Variable<DT>(lower),
higher: Variable<DT>(higher),
not: not,
);
}