dartson
dartson copied to clipboard
Dartson is a Dart library that can be used to convert Dart objects into a JSON string.
There have been great improvements and changes in the dart ecosystem since the first version (0.1.0) of dartson was released in October 2013. With the latest movement away from mirrors,...
/cc @kevmoo any plans when the update will land?
This is issue is for tracking the request of supporting references within the serialization, based on the PR #23 . However I'm not sure if this should land within dartson.
Introduce some mechanism for accessing unknown properties when decoding. For example in Jackson (java) there is [@JsonAnySetter](https://fasterxml.github.io/jackson-annotations/javadoc/2.4/com/fasterxml/jackson/annotation/JsonAnySetter.html). Dartson equivalent could be something like: ``` @Entity() class MyEntity { @Property() String...