Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for Uint8List SDK breaking change
A recent change to the Dart SDK updated `HttpClientResponse` to implement `Stream<Uint8List>` rather than implementing `Stream<List<int>>`. This forwards-compatible chnage updates calls to `Stream.transform(StreamTransformer)` to instead call the functionally equivalent `StreamTransformer.bind(Stream)` API, which puts the stream in a covariant position and thus causes the SDK change to be non-breaking. dart-lang/sdk#36900
- Loading branch information