write method

void write(
  1. int x,
  2. int y,
  3. String char
)

Writes a character at the given position with default styling.

Implementation

void write(int x, int y, String char) {
  writeStyled(x, y, char, null);
}