In my flutter application I've created a http server using dart io. I'm uploading file from web frontend using formdata using fetch api call. On the server side(flutter) how to get uploaded file?
1 - Consider re-implementing your HTTP server using shelf, which wraps the dart:io http server and provides additional features like routing, static content and multipart requests (see shelf_multipart). 2 - Otherwise use the MimeMultipartTransformer from package:mime
MimeMultipartTransformerfrom package:mime