getContentWidth method

double getContentWidth()

Implementation

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