thenByStatusDesc method

QueryBuilder<ProjectionCheckpoint, ProjectionCheckpoint, QAfterSortBy> thenByStatusDesc()

Implementation

QueryBuilder<ProjectionCheckpoint, ProjectionCheckpoint, QAfterSortBy>
    thenByStatusDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'status', Sort.desc);
  });
}