fit property
How to inscribe the child into the space allocated during layout.
Implementation
BoxFit get fit => _fit;
Implementation
set fit(BoxFit value) {
assert(value != null);
if (_fit == value)
return;
_fit = value;
_clearPaintData();
markNeedsPaint();
}