focusNode method
An object that can be used by a stateful widget to obtain the keyboard focus and to handle keyboard events
Equivalent to
TextFormField(
focusNode: input
)
Implementation
NikuTextField focusNode(FocusNode focusNode) {
this._focusNode = focusNode;
return this;
}