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