isarIdLessThan method

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

Implementation

QueryBuilder<DictionaryTag, DictionaryTag, QAfterWhereClause> isarIdLessThan(
    Id isarId,
    {bool include = false}) {
  return QueryBuilder.apply(this, (query) {
    return query.addWhereClause(
      IdWhereClause.lessThan(upper: isarId, includeUpper: include),
    );
  });
}