toString method

  1. @override
String toString()
override

Returns: A string representation ths Matrix.

Implementation

@override
String toString() {
  final Size size = _getContentSize();
  return 'W:$cols H:$rows CW:${size.width} CH:${size.height} isEmpty:$isEmpty E:$enclosures LL:$verticalLineLeft LR:$verticalLineRight';
}