Closed tvolkert closed 5 years ago
Hi Todd, thanks for the contribution and for going into so much detail finding other projects that would be affected by the Dart API change (https://github.com/dart-lang/sdk/issues/36900).
I'm not sure what happened with Travis, because the build and tests all passed. Happy to merge.
An upcoming change to the Dart SDK will change
HttpRequest
andHttpClientResponse
from implementingStream<List<int>>
to implementingStream<Uint8List>
.This forwards-compatible change prepares for that SDK breaking change by casting the Stream to
List<int>
before transforming it.https://github.com/dart-lang/sdk/issues/36900