surahsInJuz property

List<int> get surahsInJuz

Get unique surahs that appear in this Juz

Implementation

List<int> get surahsInJuz {
  final surahIds = ayat.map((ayah) => ayah.surah.id).toSet();
  return surahIds.toList()..sort();
}