to_yaml 1.0.0 copy "to_yaml: ^1.0.0" to clipboard
to_yaml: ^1.0.0 copied to clipboard

Simple package to generate yaml from Map.

Simple package to generate yaml from Map.

Pub Package

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);
}
3
likes
100
pub points
0%
popularity

Publisher

unverified uploader

Simple package to generate yaml from Map.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

More

Packages that depend on to_yaml