cursorRadius method
How rounded the corners of the cursor should be
Equivalent to
TextFormField(
cursorRadius: input
)
Implementation
NikuTextField cursorRadius(Radius cursorRadius) {
this._cursorRadius = cursorRadius;
return this;
}
How rounded the corners of the cursor should be
Equivalent to
TextFormField(
cursorRadius: input
)
NikuTextField cursorRadius(Radius cursorRadius) {
this._cursorRadius = cursorRadius;
return this;
}