headingIdsLengthLessThan method
Implementation
QueryBuilder<DictionarySearchResult, DictionarySearchResult,
QAfterFilterCondition> headingIdsLengthLessThan(
int length, {
bool include = false,
}) {
return QueryBuilder.apply(this, (query) {
return query.listLength(
r'headingIds',
0,
true,
length,
include,
);
});
}