I am new to Flutter development. My problem is that when I try to upload the image to the server I am getting following error:
NoSuchMethodError: The getter 'body' was called on null.
Receiver: null
Tried calling: body
Here is my code:
var response;
var booking_info_url='http://18.207.188.4/ruralpost/api/api.php?action=booking';
http.post(booking_info_url,body: {"userid":"3","weight":"20","quantity":"1","bimage":base64UrlEncode(await _image.readAsBytesSync())}).then(response);
{
print("Response body: ${response.body}");
}