bodyColumnsWidth property

  1. @override
double bodyColumnsWidth
inherited

Width of the body column.

Implementation

@override
double get bodyColumnsWidth {
  double width = 0;

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

  return width;
}