columnsWidth property

  1. @override
double columnsWidth
inherited

Width of the entire column.

Implementation

@override
double get columnsWidth {
  double width = 0;

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

  return width;
}