boxHeight property

int get boxHeight

The fixed height.

Implementation

int get boxHeight => _boxHeight;
set boxHeight (int v)

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

Implementation

set boxHeight(int v) {
  if (_boxHeight == v) return;
  _boxHeight = v;
  markNeedsLayout();
}