isComplete property

bool get isComplete

Returns true if the Sudoku board is complete (valid without any blank position)

Implementation

bool get isComplete => blankPositions.isEmpty && isValid;