getResultsFromSurah method
Get results from a specific surah only
Implementation
List<AyahWithSurah> getResultsFromSurah(int surahId) {
return results.where((ayah) => ayah.surah.id == surahId).toList();
}
Get results from a specific surah only
List<AyahWithSurah> getResultsFromSurah(int surahId) {
return results.where((ayah) => ayah.surah.id == surahId).toList();
}