maxContentWidth property
double?
get
maxContentWidth
Implementation
double? get maxContentWidth => _maxContentWidth;
set
maxContentWidth
(double? value)
Implementation
set maxContentWidth(double? value) {
if (_maxContentWidth == value) return;
_maxContentWidth = value;
markNeedsLayout();
}