width property

double width

Implementation

double get width {
  double sumWidth = 0;

  for (final column in columns) {
    sumWidth += column.width;
  }

  return sumWidth;
}