moveTo method

  1. @override
void moveTo(
  1. int x,
  2. int y
)
override

Moves the cursor to column x, row y.

Implementation

@override
void moveTo(int x, int y) {
  _move(null, x, y);
}