columnWidth property

double? get columnWidth

Properties

Implementation

double? get columnWidth => _columnWidth;
set columnWidth (double? value)

Implementation

set columnWidth(double? value) {
  if (_columnWidth == value) return;
  _columnWidth = value;
  markNeedsLayout();
}