useMagnifier property
Whether to use the magnifier for the center item of the wheel.
Implementation
bool get useMagnifier => _useMagnifier;
Implementation
set useMagnifier(bool value) {
if (value == _useMagnifier) {
return;
}
_useMagnifier = value;
markNeedsPaint();
}