multipart_request_null_safety 0.3.4
SDKflutter
Platformandroidios
Demonstrates how to use the multipart_request_null_safety plugin, this plugin is null safety support version from the original plugin build by aawaz.dev all credits goes to him. the formal package repo is at https://github.com/awazgyawali/multipart_request
multipart_request
A flutter plugin to send a multipart request with get progress event. Works on both Android and iOS
Example
var request = MultipartRequest();
request.addFile("image", imagePath);
Response response = request.send();
response.onError = () {
print("Error");
};
response.onComplete = (response) {
print(response);
};
response.progress.listen((int progress) {
print("progress from response object " + progress.toString());
});
