fetchRecitationsList method

Future<List<Recitation>?> fetchRecitationsList()

Implementation

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