Hi guys, anyone ever tried to use multipart with k...
# ktor
c
Hi guys, anyone ever tried to use multipart with ktor? I have this code from retrofit that I'd like to recreate with ktor:
Copy code
val body = MultipartBody.Builder()
    .setType(encType)
    .addFormDataPart("photo", file.name, requestFile)
   .build()