Brendan Weinstein
03/21/2020, 4:02 AMinterface Service {
@GET("/food")
suspend fun getFood(): Food
}
val food = withContext(<http://Dispatchers.IO|Dispatchers.IO>) { service.getFood() }
OR
val food = service.getFood()
jw
03/21/2020, 11:14 AM