angel-dart-archive / framework

moved to angel-dart/angel/packages/framework
https://github.com/angel-dart/angel/tree/master/packages/framework
MIT License
48 stars 13 forks source link

Prepare for upcoming change to File.openRead() #236

Closed tvolkert closed 5 years ago

tvolkert commented 5 years ago

An upcoming change to the Dart SDK will change the signature of File.openRead() from returning Stream<List<int>> to returning Stream<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

tvolkert commented 5 years ago

Closing this in favor of the unified https://github.com/angel-dart/framework/pull/237