hson_dart 1.0.0+1 copy "hson_dart: ^1.0.0+1" to clipboard
hson_dart: ^1.0.0+1 copied to clipboard

discontinued
outdated

HSON Dart implementation

example/lib/main.dart

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