cursorColor method

NikuTextField cursorColor(
  1. Color color
)

Color of cursor

Equivalent to

TextFormField(
  cursorColor: input
)

Implementation

NikuTextField cursorColor(Color color) {
  this._cursorColor = color;

  return this;
}