0 purchases
to yaml
Simple package to generate yaml from Map.
Example:
import 'package:to_yaml/to_yaml.dart';
void main() {
var mapData = {
'aaa': 'qqq',
'caa':{
'bbb':{
'ttt':'ttt',
'yyy':'yyy',
'array': ['zxc','qwe']
}
}
};
var yamlText = mapData.toYaml();
print(yamlText);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.