IndexWhereClause.between constructor
const
IndexWhereClause.between({})
Where clause that matches all index values between the given lower and
upper bounds.
For composite indexes, the first elements of the lower and upper lists
are checked for equality.
Implementation
const IndexWhereClause.between({
required this.indexName,
required IndexKey this.lower,
this.includeLower = true,
required IndexKey this.upper,
this.includeUpper = true,
this.epsilon = Query.epsilon,
}) : super._();