height property

Dimension? get height

If non-null, the factor of the incoming height to use.

If non-null, the child is given a tight height constraint that is the max incoming width constraint multiplied by this factor. If null, the child is given the incoming width constraints.

Implementation

Dimension? get height => _height;
set height (Dimension? value)

Implementation

set height(Dimension? value) {
  if (_height == value) return;
  _height = value;
  markNeedsLayout();
}