getAyatFromSurah method
Get ayat from a specific surah within this Juz
Implementation
List<AyahWithSurah> getAyatFromSurah(int surahId) {
return ayat.where((ayah) => ayah.surah.id == surahId).toList();
}
Get ayat from a specific surah within this Juz
List<AyahWithSurah> getAyatFromSurah(int surahId) {
return ayat.where((ayah) => ayah.surah.id == surahId).toList();
}