fixedColumnsWidth property

double get fixedColumnsWidth

Get total width of fixed columns

Implementation

double get fixedColumnsWidth {
  return fixedColumnWidths.fold<double>(0.0, (sum, width) => sum + width);
}