isarIdGreaterThan method

QueryBuilder<DictionaryTag, DictionaryTag, QAfterWhereClause> isarIdGreaterThan(
  1. Id isarId,
  2. {bool include = false}
)

Implementation

QueryBuilder<DictionaryTag, DictionaryTag, QAfterWhereClause>
    isarIdGreaterThan(Id isarId, {bool include = false}) {
  return QueryBuilder.apply(this, (query) {
    return query.addWhereClause(
      IdWhereClause.greaterThan(lower: isarId, includeLower: include),
    );
  });
}