bool isDark(int row, int col) { if (row < 0 || moduleCount <= row || col < 0 || moduleCount <= col) { throw ArgumentError('$row , $col'); } return _modules[row][col]!; }