getContentWidth method
Implementation
double getContentWidth() {
double width = 0;
widths.forEach((key, cellwidth) => width += cellwidth);
return width;
}
double getContentWidth() {
double width = 0;
widths.forEach((key, cellwidth) => width += cellwidth);
return width;
}