rightFrozenColumnsWidth property

  1. @override
double rightFrozenColumnsWidth
inherited

Width of the right frozen column.

Implementation

@override
double get rightFrozenColumnsWidth {
  double width = 0;

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

  return width;
}