between method

Condition<EntityT> between(
  1. int p1,
  2. int p2, {
  3. String? alias,
})

Finds objects with property value between and including the first and second value.

Implementation

Condition<EntityT> between(int p1, int p2, {String? alias}) =>
    _op(_ConditionOp.between, p1, p2, alias);