getSajdahFromSurah method
Get sajdah ayat from a specific surah
Implementation
List<AyahWithSurah> getSajdahFromSurah(int surahId) {
return sajdahAyat.where((ayah) => ayah.surah.id == surahId).toList();
}
Get sajdah ayat from a specific surah
List<AyahWithSurah> getSajdahFromSurah(int surahId) {
return sajdahAyat.where((ayah) => ayah.surah.id == surahId).toList();
}