Answers for "how to upload image in flutter"

0

how to upload image in flutter

import 'dart:io';
import 'package:http/http.dart' as http;
 
_asyncFileUpload(String text, File file) async{
   //create multipart request for POST or PATCH method
   var request = http.MultipartRequest("POST", Uri.parse("<url>"));
   //add text fields
   request.fields["text_field"] = text;
   //create multipart using filepath, string or bytes
   var pic = await http.MultipartFile.fromPath("file_field", file.path);
   //add multipart to request
   request.files.add(pic);
   var response = await request.send();
 
   //Get the response from the server
   var responseData = await response.stream.toBytes();
   var responseString = String.fromCharCodes(responseData);
   print(responseString);
}
Posted by: Guest on September-18-2021

Code answers related to "how to upload image in flutter"

Browse Popular Code Answers by Language