imagePathsIsNotEmpty method

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition> imagePathsIsNotEmpty()

Implementation

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition>
    imagePathsIsNotEmpty() {
  return QueryBuilder.apply(this, (query) {
    return query.listLength(
      r'imagePaths',
      0,
      false,
      999999,
      true,
    );
  });
}