boxWidth property

int get boxWidth

The fixed width.

Implementation

int get boxWidth => _boxWidth;
set boxWidth (int v)

Sets the width and marks the render object as needing layout.

Implementation

set boxWidth(int v) {
  if (_boxWidth == v) return;
  _boxWidth = v;
  markNeedsLayout();
}