toString method

  1. @override
String toString()
override

Gets the debug string representation of the Matrix3x3.

Returns a String representing the debug information of the matrix.

Implementation

@override
String toString() {
  final rows = _getRows();
  return 'Matrix3x3:\n  ${rows.map((r) => r.join(', ')).join('\n  ')}';
}