validateSurahId static method
Validate surah ID (1-114)
Implementation
static void validateSurahId(int surahId) {
  if (surahId < 1 || surahId > 114) {
    throw ArgumentError('Surah ID must be between 1 and 114, got: $surahId');
  }
}Validate surah ID (1-114)
static void validateSurahId(int surahId) {
  if (surahId < 1 || surahId > 114) {
    throw ArgumentError('Surah ID must be between 1 and 114, got: $surahId');
  }
}