onChanged method
Called when the value of textfield is changed
Equivalent to
TextFormField(
onChanged: input
)
Implementation
NikuTextField onChanged(ValueChanged<String> onChanged) {
this._onChanged = onChanged;
return this;
}
Called when the value of textfield is changed
Equivalent to
TextFormField(
onChanged: input
)
NikuTextField onChanged(ValueChanged<String> onChanged) {
this._onChanged = onChanged;
return this;
}