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