IdWhereClause.between constructor
const
IdWhereClause.between({})
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._();