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