fitsHeight property

bool fitsHeight

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

Implementation

bool get fitsHeight => _fitsHeight;
void fitsHeight=(bool value)

Implementation

set fitsHeight(bool value) {
  if (_fitsHeight == value) return;
  _fitsHeight = value;
  _clearPaintData();
  markNeedsPaint();
}