packageLengthLessThan method

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

Implementation

QueryBuilder<Repo, Repo, QAfterFilterCondition> packageLengthLessThan(int length, {bool include = false}) {
  return QueryBuilder.apply(this, (query) {
    return query.linkLength(r'package', 0, true, length, include);
  });
}