-
Notifications
You must be signed in to change notification settings - Fork 390
Closed
Labels
package:httptype-bugIncorrect behavior (everything from a crash to more subtle misbehavior)Incorrect behavior (everything from a crash to more subtle misbehavior)
Description
```
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
Metadata
Metadata
Assignees
Labels
package:httptype-bugIncorrect behavior (everything from a crash to more subtle misbehavior)Incorrect behavior (everything from a crash to more subtle misbehavior)