thenByCurrentChapterIndex method

QueryBuilder<BookProgressModel, BookProgressModel, QAfterSortBy> thenByCurrentChapterIndex()

Implementation

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