h1 method

MarkdownDocument h1(
  1. String value
)

Implementation

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