fit property

BoxFit fit

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

Implementation

BoxFit get fit => _fit;
void fit= (BoxFit value)

Implementation

set fit(BoxFit value) {
  assert(value != null);
  if (_fit == value)
    return;
  _fit = value;
  _clearPaintData();
  markNeedsPaint();
}