fetchRecitationVersesById method

Future<RecitationVerses?> fetchRecitationVersesById(
  1. int recitationVersesId
)

Implementation

Future<RecitationVerses?> fetchRecitationVersesById(int recitationVersesId) async {
  final db = await QuranDatabaseSource.instance.database;
  return db?.recitationVersesDao.findRecitationVersesById(recitationVersesId).first;
}