How to view implementation of retrofit's suspend fun
I am trying to understand how retrofit implements the following suspend function:
@GET("api/me")
suspend fun getUser(): User
Is there anyway that I can access the locally generated implementation code?
Thanks!