asYamlNode method

YamlNode asYamlNode()

Implementation

YamlNode asYamlNode() {
  var document = _document;
  if (document is Map) return YamlMap.wrap(document);
  if (document is List) return YamlList.wrap(document);
  return YamlScalar.wrap(document);
}