fromIndex static method

QuranRecitation fromIndex(
  1. int idx
)

Get recitation by index

Implementation

static QuranRecitation fromIndex(int idx) {
  return QuranRecitation.values.firstWhere(
    (r) => r.recitationIndex == idx,
    orElse: () => QuranRecitation.hafsMushafTajweed,
  );
}