toString method

  1. @override
String toString()
override

Returns the string representation of this matrix.

Implementation

@override
String toString() => '$runtimeType('
    'dataType: ${dataType.name}, '
    'rowCount: $rowCount, '
    'columnCount: $colCount):\n'
    '${format()}';