shrinkLimit property

double shrinkLimit

How to inscribe the child into the space allocated during layout.

Implementation

double get shrinkLimit => _shrinkLimit;
void shrinkLimit=(double value)

Implementation

set shrinkLimit(double value) {
  if (_shrinkLimit == value) return;
  _shrinkLimit = value;
  _clearPaintData();
  markNeedsPaint();
}