IdWhereClause.between constructor

const IdWhereClause.between({
  1. Id? lower,
  2. bool includeLower = true,
  3. Id? upper,
  4. bool includeUpper = true,
})

Where clause that matches all id values between the given lower and upper bounds.

Implementation

const IdWhereClause.between({
  this.lower,
  this.includeLower = true,
  this.upper,
  this.includeUpper = true,
}) : super._();