format method
Implementation
@override
String format(final O object) {
// decode via json to support the same value types
final jsonEncoded = jsonEncode(object, toEncodable: _structuredValue);
final tmp = jsonDecode(jsonEncoded);
return yamlEncode(tmp);
}