fetchTafsirAyah method
Implementation
Future<List<TafsirTableData>> fetchTafsirAyah(
int ayahUQNumber, int surahNumber) async {
if (database.value == null) {
throw Exception('Database not initialized');
}
List<TafsirTableData> tafsir =
await database.value!.getTafsirByAyah(ayahUQNumber);
return tafsir;
}