minWidth property
The minimum width constraint to give the child. Set this to null (the default) to use the constraint from the parent instead.
Implementation
double get minWidth => _minWidth;
Implementation
set minWidth(double value) {
if (_minWidth == value)
return;
_minWidth = value;
markNeedsLayout();
}