getSajdahFromSurah method

List<AyahWithSurah> getSajdahFromSurah(
  1. int surahId
)

Get sajdah ayat from a specific surah

Implementation

List<AyahWithSurah> getSajdahFromSurah(int surahId) {
  return sajdahAyat.where((ayah) => ayah.surah.id == surahId).toList();
}