showCursor method
Should textfield cursor be showned
Equivalent to
TextFormField(
showCursor: input
)
Implementation
NikuTextField showCursor([bool showCursor = true]) {
_showCursor = showCursor;
return this;
}
Should textfield cursor be showned
Equivalent to
TextFormField(
showCursor: input
)
NikuTextField showCursor([bool showCursor = true]) {
_showCursor = showCursor;
return this;
}