I am trying to upload an image with user data into a PHP SQL server using laravel API..
but I am getting error on uploading image..
My Image Code is:
var multipartFile = http.MultipartFile(
'image',
image.readAsBytes().asStream(),
image.lengthSync(),
filename: image.path.split('/').last,
);
Error I am getting Is :
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Converting object to an encodable object failed: Instance of 'MultipartFile'
I have also tries to upload image directly without multiparts but still getting error.