yamlBuilder property

  1. @JsonKey.new(includeFromJson: false, includeToJson: false)
String Function(TWriteable writeable, bool includeMetaData)? yamlBuilder
final

Returns a function that builds a YAML string from a JSON map.

Subclasses should override this getter to supply their YAML builder, or set it externally, if applicable. If not provided, toYaml() will throw.

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
final String Function(TWriteable writeable, bool includeMetaData)?
yamlBuilder;