Upload image with http.post and registration form in Flutter?
问题 so i want to upload a File (image) to a server with a bunch of other variable (Strings) String firstname , lastname , birthDay, phone , adresse ; File image; return http.post( uri, headers: { 'Accept': 'application/json', "Authorization": "Bearer $token", }, body: body, encoding: encoding, ); Future<http.Response> postRegisteration() async { return await api.httpPost('fotApp/master', body: { 'firstname': 'lorem', 'lastname': 'lorem', 'birthDay': 'lorem', 'adresse': 'lorem', 'phone': 'lorem',