contentWidth property
int
get
contentWidth
Total width of the table content (excluding outer frame).
Implementation
int get contentWidth {
if (_widths.isEmpty) return 0;
// widths + separators (' │ ' = 3 chars between each)
return _widths.fold<int>(0, (sum, w) => sum + w) + (columns.length - 1) * 3;
}