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

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
130
points
104
downloads

Publisher

unverified uploader

Weekly Downloads

Some tools for making your yaml life easier.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

yaml

More

Packages that depend on yamltools