thenByValue method

QueryBuilder<KV, KV, QAfterSortBy> thenByValue()

Implementation

QueryBuilder<KV, KV, QAfterSortBy> thenByValue() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'value', Sort.asc);
  });
}