forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to handle Socket implements Stream<Uint8List> (flutter#65)
A recent change in the Dart SDK updated `Socket` to implement `Stream<Uint8List>` rather than `Stream<List<int>>`. This forwards compatible change calls `StreamTransformer.bind()` rather than `Stream.transform()`, thus putting the stream in a covariant position and allowing for the transition to `Uint8List`. dart-lang/sdk#36900
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters