Index: runtime/lib/byte_array.dart |
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart |
index 94e076d527d23f7c87d54f3c60dc185fe5115078..ef482858b8e13812afd4e23014ba5a8eaeb6ab05 100644 |
--- a/runtime/lib/byte_array.dart |
+++ b/runtime/lib/byte_array.dart |
@@ -408,8 +408,8 @@ abstract class _ByteArrayBase { |
length * this.bytesPerElement()); |
} |
- List<int> toList() { |
- return new List<int>.from(this); |
+ List<int> toList({ bool growable: false }) { |
+ return new List<int>.from(this, growable: growable); |
} |
Set<int> toSet() { |