IdWhereClause.greaterThan constructor

const IdWhereClause.greaterThan({
  1. required Id lower,
  2. bool includeLower = true,
})

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

Implementation

const IdWhereClause.greaterThan({
  required Id this.lower,
  this.includeLower = true,
})  : upper = null,
      includeUpper = true,
      super._();