| Index: pkg/serialization/lib/src/serialization_rule.dart
|
| diff --git a/pkg/serialization/lib/src/serialization_rule.dart b/pkg/serialization/lib/src/serialization_rule.dart
|
| index 12c7eb70cb726286b99a9c2807850ca85bc23fce..97af0e8bb359c25412ce9f054b33842d5a13050d 100644
|
| --- a/pkg/serialization/lib/src/serialization_rule.dart
|
| +++ b/pkg/serialization/lib/src/serialization_rule.dart
|
| @@ -535,7 +535,7 @@ class _LazyMap implements Map {
|
|
|
| // These operations will work, but may be expensive, and are probably
|
| // best avoided.
|
| - get _inflated => keysAndValues(_raw).map(_reader.inflateReference);
|
| + get _inflated => mapValues(_raw, _reader.inflateReference);
|
| bool containsValue(x) => _inflated.containsValue(x);
|
| Iterable get values => _inflated.values;
|
| void forEach(f) => _inflated.forEach(f);
|
|
|