getYamlParser method

YamlParser getYamlParser(
  1. String content
)

Creates a new YamlParser for the given YAML content string.

Each call returns a fresh StringYamlParser capable of parsing the provided content into a structured YAML representation.

Implementation

YamlParser getYamlParser(String content) => StringYamlParser(content);