Im uisng flutter http.MultipartRequest, но я столкнулся с проблемой, заключающейся в том, что каждый раз запрашиваемый URL-адрес "/", зная, что когда я распечатываю "postUri", он всегда корректен. На моем сервере журнала я получаю запрос на "/"
var postUri = Uri.parse("https://myServerUrl.com/addImage");
print(postUri);
//the output is: https://myServerUrl.com/addImage
var request = http.MultipartRequest("POST", postUri);
request.files.add(await http.MultipartFile.fromPath(
"image1", nf.image.path, contentType: MediaType('image', 'jpg')));
var response = await request.send();