showCursor method

NikuTextField showCursor([
  1. bool showCursor = true
])

Should textfield cursor be showned

Equivalent to

TextFormField(
  showCursor: input
)

Implementation

NikuTextField showCursor([bool showCursor = true]) {
  _showCursor = showCursor;

  return this;
}