Feature Request
It would be great if it supports Kotlin Coroutine Flow<T> adapter for getting a response in the stream.
For example:
interface FeedApi {
@GET("/")
fun getPosts(): Flow<List<Post>>
}
If this is available then it will be easy to use and it'll be easy to map network response to the app's data model and for many Flow specific operations as well.