shrinkLimit property
double
get
shrinkLimit
How to inscribe the child into the space allocated during layout.
Implementation
double get shrinkLimit => _shrinkLimit;
set
shrinkLimit
(double value)
Implementation
set shrinkLimit(double value) {
if (_shrinkLimit == value) return;
_shrinkLimit = value;
_clearPaintData();
markNeedsPaint();
}