loadYamlNode function

YamlNode loadYamlNode(
  1. String yaml,
  2. {Uri? sourceUrl,
  3. bool recover = false,
  4. ErrorListener? errorListener}
)

Loads a single document from a YAML string as a YamlNode.

This is just like loadYaml, except that where loadYaml would return a normal Dart value this returns a YamlNode instead. This allows the caller to be confident that the return value will always be a YamlNode.

Implementation

YamlNode loadYamlNode(String yaml,
        {Uri? sourceUrl, bool recover = false, ErrorListener? errorListener}) =>
    loadYamlDocument(yaml,
            sourceUrl: sourceUrl,
            recover: recover,
            errorListener: errorListener)
        .contents;