cellAt method

  1. @override
Cell? cellAt(
  1. int x,
  2. int y
)
override

Returns the Cell at the given x and y coordinates.

Implementation

@override
Cell? cellAt(int x, int y) => _buf.cellAt(x, y);