Skip to content

Arwed-M/yaml_mapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YAML Mapper is a simple YAML Map parser, which creates a Map<String, dynamic> from a List<String> in dart.

Usage

final List<String> lines = File('myFile.yaml').readAsLinesSync();
final Map<String, dynamic> yaml = parseMap(lines);

print(yaml['entry']);