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

discontinued
outdated

HSON Dart implementation

example/lib/main.dart

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