pitchesLengthBetween method
Implementation
QueryBuilder<DictionaryHeading, DictionaryHeading, QAfterFilterCondition>
pitchesLengthBetween(
int lower,
int upper, {
bool includeLower = true,
bool includeUpper = true,
}) {
return QueryBuilder.apply(this, (query) {
return query.linkLength(
r'pitches', lower, includeLower, upper, includeUpper);
});
}