cellAt method

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

Returns the cell at (x, y) or null if out of bounds.

Implementation

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