cursorWidth method

NikuTextField cursorWidth(
  1. double cursorWidth
)

How thick the cursor will be

Equivalent to

TextFormField(
  cursorWidth: input
)

Implementation

NikuTextField cursorWidth(double cursorWidth) {
  this._cursorWidth = cursorWidth;

  return this;
}