fromIndex static method
Get recitation by index
Implementation
static QuranRecitation fromIndex(int idx) {
return QuranRecitation.values.firstWhere(
(r) => r.recitationIndex == idx,
orElse: () => QuranRecitation.hafsMushafTajweed,
);
}
Get recitation by index
static QuranRecitation fromIndex(int idx) {
return QuranRecitation.values.firstWhere(
(r) => r.recitationIndex == idx,
orElse: () => QuranRecitation.hafsMushafTajweed,
);
}