h3 method

MarkdownDocument h3(
  1. String value
)

Implementation

MarkdownDocument h3(String value) {
  _document = _document + '### ${value}\n';
  return this;
}