JaelFormatter constructor

JaelFormatter(
  1. num tabSize,
  2. bool? insertSpaces,
  3. int maxLineLength
)

Implementation

JaelFormatter(this.tabSize, this.insertSpaces, this.maxLineLength) {
  _spaces = insertSpaces! ? _spaceString(tabSize.toInt()) : '\t';
}