codelab-kotlin-coroutines
codelab-kotlin-coroutines copied to clipboard
Error in codelabs #9: Coroutines in Room & Retrofit
trafficstars
interface MainNetwork {
@GET("next_title.json")
suspend fun fetchNextTitle(): Result<String>
}
I tried returning a Result<T> & got 'kotlin.Result' can not be used as a return type