fetchRecitationsList method
Implementation
Future<List<Recitation>?> fetchRecitationsList() async {
final db = await QuranDatabaseSource.instance.database;
return db?.recitationDao.findAllRecitations();
}
Future<List<Recitation>?> fetchRecitationsList() async {
final db = await QuranDatabaseSource.instance.database;
return db?.recitationDao.findAllRecitations();
}