Socket implements Stream<Uint8List>

An upcoming change in the Dart SDK will change `Socket`
from implementing `Stream<List<int>>` to implementing
`Stream<Uint8List>`.

This breaking change in the `http_io` package corresponds
to that breaking change in the SDK. As such, this change
also bumps the minimum SDK constraint accordingly.

https://github.com/dart-lang/sdk/issues/36900
7 files changed
tree: e1d52011747a004ba3b953a3cdacb768d1c58c65
  1. lib/
  2. test/
  3. .gitignore
  4. .status
  5. .travis.yml
  6. analysis_options.yaml
  7. CHANGELOG.md
  8. LICENSE
  9. pubspec.yaml
  10. README.md
README.md

http_io

Build Status

The HTTP APIs in dart:io are pure Dart code not relying on native runtime calls. To enable faster development and bug fixes, these APIs are moving out of dart:io into this package.

Watch the dart-misc mailing list for news about deprecation and migration.