onFieldSubmitted method
Called when the user indicates that they are done editing the text in the field
Equivalent to
TextFormField(
onFieldSubmitted: input
)
Implementation
NikuTextField onFieldSubmitted(ValueChanged<String> onFieldSubmitted) {
this._onFieldSubmitted = onFieldSubmitted;
return this;
}