fit property

BoxFit fit
inherited

Implementation

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

Implementation

set fit(BoxFit value) {
  if (value != _fit) {
    _fit = value;
    markNeedsPaint();
  }
}