showCursor method

NikuTextField showCursor(
  1. bool showCursor
)

Should textfield cursor be showned

Equivalent to

TextFormField(
  showCursor: input
)

Implementation

NikuTextField showCursor(bool showCursor) {
  this._showCursor = showCursor;

  return this;
}