cursorColor method
Color of cursor
Equivalent to
TextFormField(
cursorColor: input
)
Implementation
NikuTextField cursorColor(Color color) {
this._cursorColor = color;
return this;
}
Color of cursor
Equivalent to
TextFormField(
cursorColor: input
)
NikuTextField cursorColor(Color color) {
this._cursorColor = color;
return this;
}