dartwatch-JsonObject icon indicating copy to clipboard operation
dartwatch-JsonObject copied to clipboard

JsonObject which allows dot notation access to JSON.parse'd objects. Read the article on http://www.dartlang.org/articles/json-web-service/

Results 7 dartwatch-JsonObject issues
Sort by recently updated
recently updated
newest added

I'm newbie to dart.I wonder to know is this a bug or my fault. I'm using dart 1.12.1,dartium 1.11.3.0 and Intellij IDEA When I run the sample ``` dart class...

I am working with JSON_LD which has elements like @context and _links in it. I can get `dart var sr = data.links;` to work but `dart var sr = data._links;...

Hi Chris, I tried to use JsonObject with my project but it has a lot of errors. Do you have any plans to fix it soon or I need to...

Do you have any plan to produce a JsonToObject implementation using reflection? Use of abstract class implementation gives the same effect, but i have not managed to implement a new...

Thanks for this valuable effort. I have just started playing with it. I am using the following code as suggested by the documentation: ``` dart objectToJson(instanceOfMyClass).then((jsonStr) => print(jsonStr)); ``` However,...

My Code is running as expected in Dartium but when I try to run the compiled JavaScript version following error arise in my browser log. ``` Uncaught NoSuchMethodError : method...

I was thinking about adding a property "__type" (iirc this is how other systems do it), to know what concrete type is just serialized. This is useful for when you...