multipart_request_null_safety 0.3.4 copy "multipart_request_null_safety: ^0.3.4" to clipboard
multipart_request_null_safety: ^0.3.4 copied to clipboard

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 r [...]

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());
});

Support #

Buy Me A Coffee

2
likes
120
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on multipart_request_null_safety

Packages that implement multipart_request_null_safety