playAyahWordsAudio method
تشغيل جميع كلمات آية بالتسلسل. إذا كانت نفس الآية قيد التشغيل، يتم إيقافها.
Play all words of an ayah sequentially. If the same ayah is playing, it will stop.
مثال / Example:
await QuranLibrary().playAyahWordsAudio(
ref: const WordRef(surahNumber: 1, ayahNumber: 1, wordNumber: 1),
);
Implementation
Future<void> playAyahWordsAudio({required WordRef ref}) async {
await WordInfoCtrl.instance.playAyahWordsAudio(ref);
}