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