point method

MarkdownDocument point(
  1. String value
)

Implementation

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