cursorRadius property
How rounded the corners of the cursor should be.
Implementation
Radius get cursorRadius => _cursorRadius;
Implementation
set cursorRadius(Radius value) {
if (_cursorRadius == value)
return;
_cursorRadius = value;
markNeedsPaint();
}