IndexWhereClause.greaterThan constructor

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

Where clause that matches all index values greater than the given lower bound.

For composite indexes, the first elements of the lower list are checked for equality.

Implementation

const IndexWhereClause.greaterThan({
  required this.indexName,
  required IndexKey this.lower,
  this.includeLower = true,
  this.epsilon = Query.epsilon,
})  : upper = null,
      includeUpper = true,
      super._();