v3.0.1
json2yaml
Dart 包,用于将 JSON 数据渲染为 YAML,内置自动美化功能,并支持 Dart pubspec.yaml 和 pubspec.lock 约定
12喜欢 8.6万近 30 天下载160Pub 分数
AndroidiOSWebmacOSWindowsLinux
将 JSON 数据渲染为 YAML 的 Dart 包
^1.7.0^3.1.0^2.0.1^1.19.0^3.1.0以下为英文项目原文快照,最新内容请访问 GitHub。
Dart package to render JSON data to YAML:
json2yaml is the function to format JSON data to YAML.
const developerData = {
'name': "Martin D'vloper",
'job': 'Developer',
'skill': 'Elite',
'employed': true,
'foods': ['Apple', 'Orange', 'Strawberry', 'Mango'],
'languages': {
'perl': 'Elite',
'python': 'Elite',
'pascal': 'Lame',
},
'education': '4 GCSEs\n3 A-Levels\nBSc in the Internet of Things'
};
print(json2yaml(developerData));
json2yaml supports the optional argument to customize YAML formatting for various use cases. At the moment, it supports the three following formatting styles:
YAML style is supplied as an optional argument to json2yaml():
/// Yaml formatting control options
enum YamlStyle {
generic,
pubspecYaml,
pubspecLock,
}
/// Converts JSON to YAML representation
String json2yaml(
Map<String, dynamic> json, {
YamlStyle yamlStyle = YamlStyle.generic,
});