writeCharCode method

  1. @override
void writeCharCode(
  1. int charCode
)
override

Adds the string representation of charCode to the buffer.

Equivalent to write(String.fromCharCode(charCode)).

Implementation

@override
void writeCharCode(int charCode) {
  _buffer = null;
  super.writeCharCode(charCode);
}