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

outdated

Some tools for making your yaml life easier.

example/example.dart

import 'package:yaml/yaml.dart';
import 'package:yamltools/yamltools.dart';

void main() {
  var yamlString = '''
test:
  - text: hello world
    type: greeting
''';
  var yaml = loadYamlNode(yamlString).getMapValue('test');
  print(
      '${yaml?.asList()?.nodes.first.getMapValue('text')} is a ${yaml?.asList()?.nodes.first.getMapValue('type')}');
}
2
likes
0
points
104
downloads

Publisher

unverified uploader

Weekly Downloads

Some tools for making your yaml life easier.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

yaml

More

Packages that depend on yamltools