distinctByCurrentChapterIndex method

QueryBuilder<BookProgressModel, BookProgressModel, QDistinct> distinctByCurrentChapterIndex()

Implementation

QueryBuilder<BookProgressModel, BookProgressModel, QDistinct>
    distinctByCurrentChapterIndex() {
  return QueryBuilder.apply(this, (query) {
    return query.addDistinctBy(r'currentChapterIndex');
  });
}