onSaved method
call with the final value when the form is saved via FormState.save
Equivalent to
TextFormField(
onSaved: input
)
Implementation
NikuTextField onSaved(FormFieldSetter<String> onSaved) {
this._onSaved = onSaved;
return this;
}