maxHeight property
The value to use for maxHeight if the incoming maxHeight constraint is infinite.
Implementation
double get maxHeight => _maxHeight;
Implementation
set maxHeight(double value) {
assert(value != null && value >= 0.0);
if (_maxHeight == value)
return;
_maxHeight = value;
markNeedsLayout();
}