codelab-kotlin-coroutines
codelab-kotlin-coroutines copied to clipboard
"Type inference failed" error in "6. Building logic with LiveData"
trafficstars

Need to explicitly specify the return type for getPlantsWithGrowZone
From:
fun getPlantsWithGrowZone(growZone: GrowZone) = liveData {
To:
fun getPlantsWithGrowZone(growZone: GrowZone) : LiveData<List<Plant>> = liveData {