writeComment method

void writeComment(
  1. String comment
)
inherited

Writes a comment. The provided string can be multiline.

Implementation

void writeComment(String comment) {
  _write(_prefixMultilineString(comment, prefix: '$_indentWhitespace# '));
  newline();
}