touch method

void touch(
  1. int x,
  2. int y
)

Marks a single cell as dirty.

Marks the cell at (x, y) as dirty.

Implementation

void touch(int x, int y) => touchLine(x, y, 1);