imagePathsLengthLessThan method

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition> imagePathsLengthLessThan(
  1. int length,
  2. {bool include = false}
)

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,
    );
  });
}