drawChar method

  1. @override
void drawChar(
  1. int x,
  2. int y,
  3. Char char
)
override

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);
  _state.setChar(x, y, char);
}