fit property

StackFit get fit

How non-positioned children are constrained.

Implementation

StackFit get fit => _fit;
set fit (StackFit value)

Implementation

set fit(StackFit value) {
  if (_fit == value) return;
  _fit = value;
  markNeedsLayout();
}