cursorWidth property

double cursorWidth

How thick the cursor will be.

Implementation

double get cursorWidth => _cursorWidth;
void cursorWidth= (double value)

Implementation

set cursorWidth(double value) {
  if (_cursorWidth == value)
    return;
  _cursorWidth = value;
  markNeedsLayout();
}