I have a post request where I send data using hashmap but now I want to send multiple images too in the request. here is my interface
@POST("/my-api")
fun createEditObject(@Body requestMap: HashMap<String, Any?>): Call<Object>
I did not get any solution regarding this problem.