FilterCondition<T>.between constructor

const FilterCondition<T>.between({
  1. required String property,
  2. T? lower,
  3. bool includeLower = true,
  4. T? upper,
  5. bool includeUpper = true,
  6. bool caseSensitive = true,
})

Implementation

const FilterCondition.between({
  required this.property,
  T? lower,
  bool includeLower = true,
  T? upper,
  bool includeUpper = true,
  this.caseSensitive = true,
})  : value1 = lower,
      include1 = includeLower,
      value2 = upper,
      include2 = includeUpper,
      type = ConditionType.between;