isLastPage method

bool isLastPage(
  1. int pageIndex
)

التحقق من أن الصفحة هي الأخيرة في السورة Check if page is the last in surah

Implementation

bool isLastPage(int pageIndex) {
  return pageIndex == surahPages.length - 1;
}