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