We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
```
var client = http.Client();
var request = http.Request("GET", Uri.parse("$root/$uri")); client.send(request).then((response) { double progress = 0.0; int receved = 0; response.stream.listen((value) { receved += value.length; progress = receved / contentLength; }
Handler of response.stream.listen called once with all downloaded bytes
The text was updated successfully, but these errors were encountered:
Unfortunately, that is a limitation of the underlying XMLHttpRequest implementation. I believe that package:fetch_client does not have this issue.
XMLHttpRequest
package:fetch_client
Sorry, something went wrong.
Fixed by #1401
No branches or pull requests
var client = http.Client();
The text was updated successfully, but these errors were encountered: