Closed tvolkert closed 5 years ago
The SDK recently updated BytesBuilder.takeBytes() and BytesBuilder.toBytes() to return Uint8List rather than List<int>.
BytesBuilder.takeBytes()
BytesBuilder.toBytes()
Uint8List
List<int>
A similar change has updated File.openRead() to return Stream<Uint8List> and HttpClientResponse to implement Stream<Uint8List>.
File.openRead()
Stream<Uint8List>
HttpClientResponse
This change makes the corresponding update in the angel framework.
https://github.com/dart-lang/sdk/issues/36900
ping @thosakwe
Thanks!
The SDK recently updated
BytesBuilder.takeBytes()
andBytesBuilder.toBytes()
to returnUint8List
rather thanList<int>
.A similar change has updated
File.openRead()
to returnStream<Uint8List>
andHttpClientResponse
to implementStream<Uint8List>
.This change makes the corresponding update in the angel framework.
https://github.com/dart-lang/sdk/issues/36900