jumpToSurah method

void jumpToSurah(
  1. int surah
)

jumpToSurah يتيح لك التنقل إلى أي سورة في القرآن باستخدام رقم السورة. ملاحظة: تستقبل هذه الطريقة رقم السورة وليس فهرس السورة.

jumpToSurah let's you navigate to any quran surah with surah number Note it receives surah number not surah index

Implementation

void jumpToSurah(int surah) =>
    jumpToPage(quranCtrl.surahsStart[surah - 1] + 1);