IndexWhereClause.between constructor

const IndexWhereClause.between(
  1. {required String indexName,
  2. required IndexKey lower,
  3. bool includeLower = true,
  4. required IndexKey upper,
  5. bool includeUpper = true,
  6. double epsilon = Query.epsilon}
)

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._();