Skip to content

smgks/to_yaml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
}