definitionsLengthLessThan method

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

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