cursorRadius property

Radius cursorRadius

How rounded the corners of the cursor should be.

Implementation

Radius get cursorRadius => _cursorRadius;
void cursorRadius= (Radius value)

Implementation

set cursorRadius(Radius value) {
  if (_cursorRadius == value)
    return;
  _cursorRadius = value;
  markNeedsPaint();
}