debugPrintGrid method

void debugPrintGrid()

Prints the grid to the debug console.

This method is useful for debugging purposes, allowing visual inspection of the matrix structure in the console output.

Implementation

void debugPrintGrid() {
  debugPrint('${toText()}\n');
}