FilterCondition.lessThan constructor

const FilterCondition.lessThan({
  1. required String property,
  2. required Object? value,
  3. bool include = false,
  4. bool caseSensitive = true,
  5. double epsilon = Query.epsilon,
})

Filters the results to only include objects where the property is less than value.

For lists, at least one of the values in the list has to match.

Implementation

const FilterCondition.lessThan({
  required this.property,
  required Object? value,
  bool include = false,
  this.caseSensitive = true,
  this.epsilon = Query.epsilon,
})  : type = FilterConditionType.lessThan,
      value1 = value,
      include1 = include,
      value2 = null,
      include2 = false,
      super._();