findRecitationVersesById abstract method

  1. @Query('SELECT * FROM RecitationVerses WHERE id = :id')
Stream<RecitationVerses?> findRecitationVersesById(
  1. int id
)

Implementation

@Query('SELECT * FROM RecitationVerses WHERE id = :id')
Stream<RecitationVerses?> findRecitationVersesById(int id);