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