cursorRadius property

Radius? cursorRadius

How rounded the corners of the cursor should be.

A null value is the same as Radius.zero.

Implementation

Radius? get cursorRadius => _caretPainter.cursorRadius;
void cursorRadius=(Radius? value)

Implementation

set cursorRadius(Radius? value) {
  _caretPainter.cursorRadius = value;
}