hson_dart 1.0.1 copy "hson_dart: ^1.0.1" to clipboard
hson_dart: ^1.0.1 copied to clipboard

discontinued
outdated

HSON Dart implementation

example/lib/main.dart

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));
}