lt function

FilterExpr lt(
  1. String field,
  2. dynamic value
)

Matches if the field is less than the given value.

Implementation

FilterExpr lt(String field, dynamic value) {
  return FilterLt(field, value);
}