Chapter 7 - Coding the repository implementation class
Let us code the repository implementation class
class ArtRepositoryImpl(private val artDao: ArtDao):ArtRepositoryInterface {
override fun getArt(): Flow<List<Art>> {
//returns a stream (Flow) that emits a list of ArtEntity objects
...