appendCharCode method

StringBuilder appendCharCode(
  1. int charCode
)

Appends a character code.

Implementation

StringBuilder appendCharCode(int charCode) {
  _buffer.writeCharCode(charCode);
  return this;
}