mdFactory property

  1. @JsonKey.new(includeFromJson: false, includeToJson: false)
TMdFactory<TWriteable>? mdFactory
getter/setter pair

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

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

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
TMdFactory? mdFactory;