0 purchases
yaml
A parser for YAML.
Usage #
Use loadYaml to load a single document, or loadYamlStream to load a
stream of documents. For example:
import 'package:yaml/yaml.dart';
main() {
var doc = loadYaml("YAML: YAML Ain't Markup Language");
print(doc['YAML']);
}
copied to clipboard
This library currently doesn't support dumping to YAML. You should use
json.encode from dart:convert instead:
import 'dart:convert';
import 'package:yaml/yaml.dart';
main() {
var doc = loadYaml("YAML: YAML Ain't Markup Language");
print(json.encode(doc));
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.