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