audioPathsLengthBetween method

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition> audioPathsLengthBetween(
  1. int lower,
  2. int upper,
  3. {bool includeLower = true,
  4. bool includeUpper = true}
)

Implementation

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition>
    audioPathsLengthBetween(
  int lower,
  int upper, {
  bool includeLower = true,
  bool includeUpper = true,
}) {
  return QueryBuilder.apply(this, (query) {
    return query.listLength(
      r'audioPaths',
      lower,
      includeLower,
      upper,
      includeUpper,
    );
  });
}