setCell method

  1. @override
void setCell(
  1. int x,
  2. int y,
  3. Cell? cell
)
override

Sets the cell at the given x and y coordinates.

Implementation

@override
void setCell(int x, int y, Cell? cell) {
  _buf.setCell(x, y, cell);
}