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