| Index: sdk/lib/io/bytes_builder.dart
|
| diff --git a/sdk/lib/io/bytes_builder.dart b/sdk/lib/io/bytes_builder.dart
|
| index 2882402b641bc1171d41adb0d5d04a5587ddbb2c..a4b611fc505c9f386dc55adb45420398d62e08df 100644
|
| --- a/sdk/lib/io/bytes_builder.dart
|
| +++ b/sdk/lib/io/bytes_builder.dart
|
| @@ -153,7 +153,7 @@ class _CopyingBytesBuilder implements BytesBuilder {
|
|
|
| class _BytesBuilder implements BytesBuilder {
|
| int _length = 0;
|
| - final List _chunks = [];
|
| + final _chunks = <List<int>>[];
|
|
|
| void add(List<int> bytes) {
|
| if (bytes is! Uint8List) {
|
|
|