| Index: pkg/serialization/test/test_models.dart
|
| diff --git a/pkg/serialization/test/test_models.dart b/pkg/serialization/test/test_models.dart
|
| index 3f1d27c4ea73061a44da31aaed41d3c54baf9011..0f4c417aedf5426a882c4cdfcc7dfe5cbb572786 100644
|
| --- a/pkg/serialization/test/test_models.dart
|
| +++ b/pkg/serialization/test/test_models.dart
|
| @@ -13,6 +13,8 @@ class Person {
|
|
|
| class Address {
|
| String street, city, state, zip;
|
| + Address();
|
| + Address.with(this.street, this.city, this.state, this.zip);
|
| }
|
|
|
| class Various {
|
|
|