hson_dart 1.0.1 hson_dart: ^1.0.1 copied to clipboard
HSON Dart implementation
import 'package:hson_dart/hson_dart.dart';
void main() {
String hsonPath = "../hson/sample.hson";
var h = HSON.getInstance("../");
h.writeHSON<Map<String, String>>({"foo": "bar"}, hsonPath);
print(h.readHSON(hsonPath));
}