hasCell method

bool hasCell(
  1. int row,
  2. int column
)

Implementation

bool hasCell(int row, int column) =>
    _cells.any((cell) => cell.occupies(column: column, rowNumber: row));