blob: a2a1751b72915f63fad1f59eb96ac4957b0d1009 [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:yaml/yaml.dart';
import 'package:yaml_edit/yaml_edit.dart' show YamlEditor;
/// Converts a [YamlNode] to a valid YAML-formatted [String].
String encodeYamlAsString(YamlNode contents) {
final editor = YamlEditor('');
editor.update(const <String>[], contents);
return editor.toString();
}