getSurahRealPageRange method
الحصول على نطاق الصفحات الحقيقية للسورة Get the real page range for the surah
Implementation
Map<String, int> getSurahRealPageRange() {
if (surahAyahs.isEmpty) return {'start': 1, 'end': 1};
final startPage = surahAyahs.first.page;
final endPage = surahAyahs.last.page;
return {
'start': startPage,
'end': endPage,
'total': endPage - startPage + 1,
};
}