dynamic whereLessThan(value)

Matcher for matching a column value less than the argument when using Query.where.

See Query.where. Example:

  var query = new Query<Employee>()
    ..where.salary = whereLessThan(60000);

Source

dynamic whereLessThan(dynamic value) {
  return new ComparisonMatcherExpression(value, MatcherOperator.lessThan);
}