fit property

BoxFit get fit
inherited

Implementation

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

Implementation

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