thenByCurrentChapterIndexDesc method

QueryBuilder<BookProgressModel, BookProgressModel, QAfterSortBy> thenByCurrentChapterIndexDesc()

Implementation

QueryBuilder<BookProgressModel, BookProgressModel, QAfterSortBy>
    thenByCurrentChapterIndexDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'currentChapterIndex', Sort.desc);
  });
}