fit property

ImageFit get fit

Sizing/cropping mode.

Implementation

ImageFit get fit => _fit;
set fit (ImageFit value)

Implementation

set fit(ImageFit value) {
  if (value == _fit) return;
  _fit = value;
  markNeedsPaint();
}