lessThan method

T lessThan(
  1. String value
)

Checks whether the value of the column is less than value

Implementation

T lessThan(String value) {
  return _createFilter(value, "<");
}