cursorRounded method

NikuTextField cursorRounded(
  1. double radius
)

How rounded the corners of the cursor should be. Shorten of .cursorRadius

Equivalent to

TextFormField(
  cursorWidth: Radius.circular(input)
)

Implementation

NikuTextField cursorRounded(double radius) {
  this._cursorRadius = Radius.circular(radius);

  return this;
}