json 

Send to Kindle
home » snippets » dart » json



Snippets

import 'dart:convert';

var encoded = JSON.encode([1, 2, { "a": null }]);
var decoded = JSON.decode('["foo", { "bar": 499 }]');