Given this Retrofit service, which JSON response would parse…
Given this Retrofit service, which JSON response would parse without error into List? @Serializable data class Photo(val id: String, val imgSrc: String) interface MarsApi { @GET(“photos”) suspend fun photos(): List }
Read Details