appendCharCode method
Appends a character code.
Implementation
StringBuilder appendCharCode(int charCode) {
_buffer.writeCharCode(charCode);
return this;
}
Appends a character code.
StringBuilder appendCharCode(int charCode) {
_buffer.writeCharCode(charCode);
return this;
}