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