Expression.lessThan constructor

Expression.lessThan(
  1. String fieldPath,
  2. dynamic value
)

Creates an expression that filters a field for a value that is less than the given value.

Implementation

factory Expression.lessThan(String fieldPath, dynamic value) {
  return LessThan.fieldValue(fieldPath, value);
}