writeCharCodeIndented method

void writeCharCodeIndented(
  1. int charCode, [
  2. int indentFactor = 1
])

Same as writeCharCode, but prepends indent to the character.

Implementation

void writeCharCodeIndented(int charCode, [int indentFactor = 1]) {
  _writeIndent(indentFactor);
  writeCharCode(charCode);
}