Index: utils/pub/yaml/yaml_map.dart |
diff --git a/utils/pub/yaml/yaml_map.dart b/utils/pub/yaml/yaml_map.dart |
index 27d5cfc9a94819bd43b27d2d5fba0315501a0f8b..5835cf49e0aa2a30e4151196fbdebd4c22aaaedb 100644 |
--- a/utils/pub/yaml/yaml_map.dart |
+++ b/utils/pub/yaml/yaml_map.dart |
@@ -31,7 +31,7 @@ class YamlMap implements Map, Hashable { |
_map.forEach((k, v) => f(_unwrapKey(k), v)); |
Collection getKeys() => _map.getKeys().map(_unwrapKey); |
Collection getValues() => _map.getValues(); |
- int get length() => _map.length; |
+ int get length => _map.length; |
bool isEmpty() => _map.isEmpty(); |
String toString() => _map.toString(); |