toString method
Returns a string representation of this Band.
Implementation
@override
String toString() {
String title =
'[${artifacts.length}] Avg(W:${averageWidth.toStringAsFixed(0)}, H:${rectangleAdjusted.height} G:${averageKerning.toStringAsFixed(0)})';
if (spacesCount > 0) {
title += ' S[$spacesCount]';
}
return title;
}