cursorWidth property
How thick the cursor will be.
Implementation
double get cursorWidth => _cursorWidth;
Implementation
set cursorWidth(double value) {
if (_cursorWidth == value) {
return;
}
_cursorWidth = value;
markNeedsLayout();
}