fetchTafsirAyah method
شرح: جلب التفسير حسب رقم الآية Explanation: Fetch tafsir by ayah number
Implementation
Future<List<TafsirTableData>> fetchTafsirAyah(int ayahUQNumber,
{String? databaseName}) async {
await initializeDatabase();
if (database.value == null) {
throw Exception('Database not initialized');
}
return await database.value!
.getTafsirByAyah(ayahUQNumber, databaseName: databaseName);
}