drawChar method
Most basic draw method for the terminal; draws the given Char at column
x
, row y
of this Terminal.
Must be implemented by subclasses.
Implementation
@override
void drawChar(int x, int y, Char char) {
boundsCheck(x, y);
_root.drawChar(_position.x + x, _position.y + y, char);
}