Sudoku.withMoreHints constructor
Sudoku.withMoreHints(
- int hintOffset
Implementation
Sudoku.withMoreHints(int hintOffset) {
_initialize();
_scrambleBoards();
if (hintOffset > -1) {
_addClues(hintOffset);
} else {
throw Exception('hint offset must be non-negative integer');
}
}