isAntiAlias property
Whether to paint the image with anti-aliasing.
Anti-aliasing alleviates the sawtooth artifact when the image is rotated.
Implementation
bool get isAntiAlias => _isAntiAlias;
Implementation
set isAntiAlias(bool value) {
if (_isAntiAlias == value) {
return;
}
_isAntiAlias = value;
markNeedsPaint();
}