prefix method

Comment prefix(
  1. String prefix
)

Sets the comment prefix (default: '//').

Implementation

Comment prefix(String prefix) {
  _prefix = prefix;
  return this;
}