toString method
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';
}