imagePathsIsEmpty method

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition> imagePathsIsEmpty()

Implementation

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