writeCharCode method
Writes a string containing the character with code point charCode.
Equivalent to write(String.fromCharCode(charCode)).
Implementation
@override
void writeCharCode(int charCode) {
// Single characters won't match any secret pattern (length >= 3)
_inner.writeCharCode(charCode);
}