hson_dart 1.1.2+1 hson_dart: ^1.1.2+1 copied to clipboard
Hash checked JSON library for Dart implementation (HSON dynamic library file is not included in this package)
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));
}