isBiggerThanValue method

Expression<bool> isBiggerThanValue(
  1. DT other
)

Returns an expression that is true if this expression is strictly bigger than the other value.

Implementation

@pragma('drift:v3-rename', 'isGreaterThanValue')
Expression<bool> isBiggerThanValue(DT other) {
  return isBiggerThan(variable(other));
}