filterQuality property Null safety
Used to set the filterQuality of the image.
Use the FilterQuality.low quality setting to scale the image, which corresponds to bilinear interpolation, rather than the default FilterQuality.none which corresponds to nearest-neighbor.
Implementation
FilterQuality get filterQuality => _filterQuality;
Implementation
set filterQuality(FilterQuality value) {
assert(value != null);
if (value == _filterQuality) {
return;
}
_filterQuality = value;
markNeedsPaint();
}