retrofit response

package com.guidingu24x7.retrofit interface RetrofitResponse { suspend fun sendRequest(retrofitApi: RetrofitApi):T fun onResponse(res: T) fun onException(message: String?) fun onError(error:String){} }

Comments