isRowFull method

bool isRowFull(
  1. int row
)

Implementation

bool isRowFull(int row) => grid[row].every((c) => c.filled);