WhereClause constructor

const WhereClause({
  1. String? indexName,
  2. List? lower,
  3. bool includeLower = true,
  4. List? upper,
  5. bool includeUpper = true,
})

Implementation

const WhereClause({
  this.indexName,
  this.lower,
  this.includeLower = true,
  this.upper,
  this.includeUpper = true,
});