maxHeight property

double maxHeight

The value to use for maxHeight if the incoming maxHeight constraint is infinite.

Implementation

double get maxHeight => _maxHeight;
void maxHeight= (double value)

Implementation

set maxHeight(double value) {
  assert(value != null && value >= 0.0);
  if (_maxHeight == value)
    return;
  _maxHeight = value;
  markNeedsLayout();
}