h2 method

MarkdownDocument h2(
  1. String value
)

Implementation

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