MultipartForm
MultipartForm copied to clipboard
Implementing progress handler when uploading multipart/form-data
You can probably do it and implement it yourself like so:
// store this to a strong var.
uploadProgressObservation = task.progress.observe(\.fractionCompleted) { fraction, _ in
print("processUploadRequest upload progress -> \(fraction.fractionCompleted)")
}